Skip to content

Commit 9e4d6d6

Browse files
committed
remove outdated comment
1 parent d98fffa commit 9e4d6d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/nsrt/bug-12393b.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ public function doBar(): void
388388
{
389389
$i = rand(5, 10);
390390
$this->foo = $i;
391-
assertType("'10'|'5'|'6'|'7'|'8'|'9'", $this->foo); // could be numeric-string
391+
assertType("'10'|'5'|'6'|'7'|'8'|'9'", $this->foo);
392392
}
393393
}
394394

@@ -400,7 +400,7 @@ class FooNullableIntString
400400
public function doFoo(?int $b): void
401401
{
402402
$this->foo = $b;
403-
assertType('lowercase-string&numeric-string&uppercase-string', $this->foo); // could be numeric-string
403+
assertType('lowercase-string&numeric-string&uppercase-string', $this->foo);
404404
}
405405

406406
public function doBar(): void

0 commit comments

Comments
 (0)