Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .dev-tools/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
"ergebnis/composer-normalize": "^2.48.2",
"infection/infection": "^0.31.2",
"kubawerlos/composer-smaller-lock": "^1.1.0",
"kubawerlos/php-cs-fixer-config": "^5.4",
"kubawerlos/php-cs-fixer-config": "^5.5",
"mi-schi/phpmd-extension": "^4.3",
"phpmd/phpmd": "^2.15",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.28",
"phpstan/phpstan": "^2.1.29",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpstan/phpstan-strict-rules": "^2.0.6",
"phpstan/phpstan-strict-rules": "^2.0.7",
"shipmonk/composer-dependency-analyser": "^1.8.3",
"shipmonk/dead-code-detector": "^0.13.3",
"shipmonk/phpstan-rules": "^4.2.1",
Expand Down
46 changes: 23 additions & 23 deletions .dev-tools/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/AutoReview/TestsCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function testDataProvidersValues(string $className): void
\in_array($value[0], $doNotChangeCases, true),
\sprintf(
"Expected value:\n%s\nis already tested if it is not changing, it does not need separate test case (%s::%s).",
$value[0],
(string) $value[0],
$className,
$dataProvider->getName(),
),
Expand Down
2 changes: 1 addition & 1 deletion tests/Fixer/SingleSpaceAfterStatementFixerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public function testTokenIsUseful(int $token): void
self::assertNotSame(
$expectedTokens->generateCode(),
$allTokens->generateCode(),
\sprintf('Removing token %s did not broke fixing', Token::getNameForId($token)),
\sprintf('Removing token %s did not broke fixing', (string) Token::getNameForId($token)),
);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/PriorityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ private static function getFixer(string $name, array $config): FixerInterface
}
}

throw new \Exception(\sprintf('Fixer "%s" not found in config: "%s".', $name, \json_encode($config)));
throw new \Exception(\sprintf('Fixer "%s" not found in config: "%s".', (string) $name, (string) \json_encode($config)));
}

private static function createSplFileInfoDouble(): \SplFileInfo
Expand Down
Loading