From 1a5cdf6394c13b88f9f23f0835cb815e0c3396a1 Mon Sep 17 00:00:00 2001 From: Takuya Aramaki Date: Mon, 12 Jan 2026 11:06:54 +0900 Subject: [PATCH] Fix typo in test data --- .../Rules/Properties/data/redeclare-readonly-property.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PHPStan/Rules/Properties/data/redeclare-readonly-property.php b/tests/PHPStan/Rules/Properties/data/redeclare-readonly-property.php index a9e611d3b9..01f10b61cc 100644 --- a/tests/PHPStan/Rules/Properties/data/redeclare-readonly-property.php +++ b/tests/PHPStan/Rules/Properties/data/redeclare-readonly-property.php @@ -181,7 +181,7 @@ public function __construct(public readonly int $myProp) { class B15 extends A { public function __construct(public readonly int $myProp) { - self:foo(); + self::foo(); } public static function foo(): void