Update metadata and build config #50
Annotations
8 warnings
src/ClassSource.php#L72
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
// Internal class
if ($file === false) {
$datetime = DateTimeImmutable::createFromFormat('U', '0');
- assert($datetime !== false);
+ assert($datetime !== true);
return $datetime;
}
$time = filemtime($file);
|
src/ClassSource.php#L78
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
return $datetime;
}
$time = filemtime($file);
- assert($time !== false);
+ assert($time !== true);
$datetime = DateTimeImmutable::createFromFormat('U', (string) $time);
assert($datetime !== false);
return $datetime;
|
src/ClassSource.php#L81
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
$time = filemtime($file);
assert($time !== false);
$datetime = DateTimeImmutable::createFromFormat('U', (string) $time);
- assert($datetime !== false);
+ assert($datetime !== true);
return $datetime;
}
public function __toString() : string
|
src/FunctionSource.php#L71
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
// Internal class
if ($file === false) {
$datetime = DateTimeImmutable::createFromFormat('U', '0');
- assert($datetime !== false);
+ assert($datetime !== true);
return $datetime;
}
$time = filemtime($file);
|
src/FunctionSource.php#L77
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
return $datetime;
}
$time = filemtime($file);
- assert($time !== false);
+ assert($time !== true);
$datetime = DateTimeImmutable::createFromFormat('U', (string) $time);
assert($datetime !== false);
return $datetime;
|
src/FunctionSource.php#L80
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
$time = filemtime($file);
assert($time !== false);
$datetime = DateTimeImmutable::createFromFormat('U', (string) $time);
- assert($datetime !== false);
+ assert($datetime !== true);
return $datetime;
}
public function __toString() : string
|
src/ParameterSource.php#L42
Escaped Mutant for Mutator "InstanceOf_":
--- Original
+++ New
@@ @@
if ($reflector instanceof ReflectionMethod) {
return new MethodSource($reflector);
}
- assert($reflector instanceof ReflectionFunction);
+ assert(true);
return new FunctionSource($reflector);
}
public function getReflector() : ReflectionParameter
|
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/github-script@v6, actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
This job succeeded
Loading