Skip to content

Commit 21923d3

Browse files
committed
Fix build
1 parent 2252516 commit 21923d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Rules/Pure/data/pure-method.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ public static function getB(): int
399399

400400
class StaticMethodAssigningStaticProperty
401401
{
402-
public static int $a = 0;
403-
402+
/** @var int */
403+
public static $a = 0;
404404
/**
405405
* @phpstan-pure
406406
*/

0 commit comments

Comments
 (0)