Merge pull request #30 from GaryJones/GaryJones/fix-ci-failures #75
ci.yml
on: push
Lint and code standards
26s
Matrix: test
Annotations
6 warnings
|
WP 6.9 on PHP 8.4:
plugin-slug/src/Foo.php#L32
Escaped Mutant for Mutator "TrueValue":
@@ @@
*/
public function is_true(): bool
{
- return true;
+ return false;
}
}
|
|
WP 6.9 on PHP 8.4:
plugin-slug/src/Foo.php#L31
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*
* @return true
*/
- public function is_true(): bool
+ protected function is_true(): bool
{
return true;
}
}
|
|
WP 6.9 on PHP 8.4:
plugin-slug/src/Foo.php#L22
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
/**
* Bar.
*/
- public function bar(): string
+ protected function bar(): string
{
return 'Foo::bar()';
}
|
|
WP master on PHP 8.5:
plugin-slug/src/Foo.php#L32
Escaped Mutant for Mutator "TrueValue":
@@ @@
*/
public function is_true(): bool
{
- return true;
+ return false;
}
}
|
|
WP master on PHP 8.5:
plugin-slug/src/Foo.php#L31
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
*
* @return true
*/
- public function is_true(): bool
+ protected function is_true(): bool
{
return true;
}
}
|
|
WP master on PHP 8.5:
plugin-slug/src/Foo.php#L22
Escaped Mutant for Mutator "PublicVisibility":
@@ @@
/**
* Bar.
*/
- public function bar(): string
+ protected function bar(): string
{
return 'Foo::bar()';
}
|