composer(deps-dev): update symplify/phpstan-rules requirement from ^14.1.2 to ^14.1.4 #1392
continuous-integration.yml
on: pull_request
Matrix: Validate Project / Check composer dependencies with composer-dependency-analyser
Matrix: Validate Project / Check composer with composer-normalize
Matrix: Validate Project / Check with editorconfig-checker
Matrix: Validate Project / Lint PHP
Matrix: Validate Project / Validate markdown files
Matrix: Validate Project / Linting with overtrue/phplint
Matrix: Validate Project / Validate composer
Matrix: Validate Project / Validate yaml
Matrix: Install Project / Install Node dependencies
Matrix: Install Project / Install PHP dependencies
Matrix: Project Analysis / Run eslint
Matrix: Project Analysis / Check Coding Standards with PHP-CS-Fixer
Matrix: Project Analysis / Check Coding Standards with PHPCS
Matrix: Project Analysis / Run prettier
Matrix: Project Analysis / Checks with Rector
Matrix: Project Analysis / Static Code Analysis with PHPStan
Matrix: Project Analysis / Run stylelint
Matrix: UnitTests / Code Coverage with PHPUnit
Matrix: UnitTests / UnitTests with PHPUnit
Matrix: UnitTests / UnitTests with stryker
Matrix: UnitTests / UnitTests with vitest
Unit & Integration Tests Status
0s
Annotations
1 warning
UnitTests / Code Coverage with PHPUnit (ubuntu-24.04, 8.3, lowest):
src/IosBuild.php#L70
Escaped Mutant for Mutator "LessThan":
@@ @@
if ($matchCode['primaryCode'] . $matchCode['secondaryCode'] !== $matchNeedle['primaryCode'] . $matchNeedle['secondaryCode']) {
continue;
}
- if ($matchNeedle['buildCode'] < $matchCode['buildCode']) {
+ if ($matchNeedle['buildCode'] <= $matchCode['buildCode']) {
continue;
}
$candidate[$matchCode['buildCode']] = $versions[$key];
|