Restore run() method #62
ci.yml
on: push
Determine Supported PHP Versions
3s
Lint and code standards
26s
Matrix: Unit and Integration tests
Annotations
9 warnings
Unit and Integration tests (8.3, trunk, true):
src/Foo.php#L22
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
/**
* Bar.
*/
- public function bar(): string
+ protected function bar(): string
{
return 'Foo::bar()';
}
|
Unit and Integration tests (8.3, trunk, true):
src/Foo.php#L31
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*
* @return true
*/
- public function is_true(): bool
+ protected function is_true(): bool
{
return true;
}
}
|
Unit and Integration tests (8.3, trunk, true):
src/Foo.php#L32
Escaped Mutant for Mutator "TrueValue":
@@ @@
*/
public function is_true(): bool
{
- return true;
+ return false;
}
}
|
Unit and Integration tests (8.3, latest):
src/Foo.php#L22
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
/**
* Bar.
*/
- public function bar(): string
+ protected function bar(): string
{
return 'Foo::bar()';
}
|
Unit and Integration tests (8.3, latest):
src/Foo.php#L31
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*
* @return true
*/
- public function is_true(): bool
+ protected function is_true(): bool
{
return true;
}
}
|
Unit and Integration tests (8.3, latest):
src/Foo.php#L32
Escaped Mutant for Mutator "TrueValue":
@@ @@
*/
public function is_true(): bool
{
- return true;
+ return false;
}
}
|
Unit and Integration tests (8.2, latest):
src/Foo.php#L22
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
/**
* Bar.
*/
- public function bar(): string
+ protected function bar(): string
{
return 'Foo::bar()';
}
|
Unit and Integration tests (8.2, latest):
src/Foo.php#L31
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*
* @return true
*/
- public function is_true(): bool
+ protected function is_true(): bool
{
return true;
}
}
|
Unit and Integration tests (8.2, latest):
src/Foo.php#L32
Escaped Mutant for Mutator "TrueValue":
@@ @@
*/
public function is_true(): bool
{
- return true;
+ return false;
}
}
|