CI #93
Annotations
7 warnings
PHP
Cache not found for keys: Linux-noble-x86_64-8.4-f2b5babb3b1f375e9675563ac51bd3aaea8205a36c084a34d7dfd55e2dce6310-20240716-, Linux-noble-x86_64-8.4-f2b5babb3b1f375e9675563ac51bd3aaea8205a36c084a34d7dfd55e2dce6310-20240716-
|
PHPUnit
Cache not found for keys: ori-php-phpunit--job-tests-mutations--os-Linux--matrix-{"operating-system":"ubuntu-latest"+"php-version":"8.4"}--run-13365722974, ori-php-phpunit--job-tests-mutations--os-Linux--matrix-{"operating-system":"ubuntu-latest"+"php-version":"8.4"}--run-
|
Infection PHP
Cache not found for keys: ori-php-infection--job-tests-mutations--os-Linux--matrix-{"operating-system":"ubuntu-latest"+"php-version":"8.4"}--run-13365722974, ori-php-infection--job-tests-mutations--os-Linux--matrix-{"operating-system":"ubuntu-latest"+"php-version":"8.4"}--run-
|
Infection PHP:
src/DI/SchedulerExtension.php#L92
Escaped Mutant for Mutator "FalseValue":
@@ @@
$value = substr($value, 1);
} elseif (str_starts_with($value, '@')) {
// @Yearly - service reference
- return false;
+ return true;
}
return CronExpression::isValidExpression($value);
}, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(0)->max(30), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
|
Infection PHP:
src/DI/SchedulerExtension.php#L102
Escaped Mutant for Mutator "DecrementInteger":
@@ @@
return false;
}
return CronExpression::isValidExpression($value);
- }, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(0)->max(30), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
+ }, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(-1)->max(30), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
if ($timeZone === null) {
return true;
}
|
Infection PHP:
src/DI/SchedulerExtension.php#L103
Escaped Mutant for Mutator "IncrementInteger":
@@ @@
return false;
}
return CronExpression::isValidExpression($value);
- }, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(0)->max(30), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
+ }, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(0)->max(31), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
if ($timeZone === null) {
return true;
}
|
Infection PHP:
src/DI/SchedulerExtension.php#L109
Escaped Mutant for Mutator "TrueValue":
@@ @@
return CronExpression::isValidExpression($value);
}, 'Valid cron expression'), 'callback' => $this->createCallbackSchema()->default(null), 'job' => DefinitionsLoader::schema()->default(null), 'repeatAfterSeconds' => Expect::int(0)->min(0)->max(30), 'timeZone' => Expect::anyOf(Expect::string(), Expect::null())->assert(static function (?string $timeZone): bool {
if ($timeZone === null) {
- return true;
+ return false;
}
return in_array($timeZone, timezone_identifiers_list(), true);
}, 'Valid timezone')])->assert(static function (stdClass $values): bool {
|
Loading