Skip to content

Commit bcc49f6

Browse files
committed
Upgrade ECS to 12.5.22 (has no sub-dependencies) and PHPStan because why not
1 parent 9823df4 commit bcc49f6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"symfony/process": "^6.4|^7.0|^8.0"
2424
},
2525
"require-dev": {
26-
"phpstan/phpstan": "^1.11",
27-
"symplify/easy-coding-standard": "^12.1.2",
26+
"phpstan/phpstan": "^2.1.21",
27+
"symplify/easy-coding-standard": "12.5.22",
2828
"symfony/framework-bundle": "^6.4|^7.0|^8.0"
2929
}
3030
}

src/BiomeJsBinary.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ private static function isMusl(): bool
4242
{
4343
static $isMusl = null;
4444

45-
if (null !== $isMusl) {
45+
if (is_bool($isMusl)) {
4646
return $isMusl;
4747
}
4848

src/KocalBiomeJsBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
final class KocalBiomeJsBundle extends Bundle
1212
{
13-
protected function createContainerExtension(): ?ExtensionInterface
13+
protected function createContainerExtension(): ExtensionInterface
1414
{
1515
return new BiomeJsExtension();
1616
}

0 commit comments

Comments
 (0)