Skip to content

Commit d7efa63

Browse files
committed
Fix build
1 parent 960dd44 commit d7efa63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
],
88
"require": {
99
"php": "^7.2 || ^8.0",
10-
"phpstan/phpstan": "^1.12"
10+
"phpstan/phpstan": "^1.12.5"
1111
},
1212
"require-dev": {
1313
"nikic/php-parser": "^4.13.0",

tests/Type/WebMozartAssert/data/comparison.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function notEmpty(string $a, $b, $c): void
6464
assertType('non-falsy-string', $a);
6565

6666
Assert::notEmpty($b);
67-
assertType("mixed~0|0.0|''|'0'|array{}|false|null", $b);
67+
assertType("mixed~(0|0.0|''|'0'|array{}|false|null)", $b);
6868

6969
Assert::notEmpty($c);
7070
assertType('non-falsy-string', $c);

0 commit comments

Comments
 (0)