Restore Comment

I don't get it. Phpstan should pass this statement in Php8.3, but doesn't.
This commit is contained in:
oleibman
2024-10-13 20:39:19 -07:00
parent 333cb21f6d
commit 748ef0ab53
+1 -1
View File
@@ -171,7 +171,7 @@ class Html extends BaseReader
{
$meta = stream_get_meta_data($this->fileHandle);
// Phpstan incorrectly flags following line for Php8.2-, corrected in 8.3
$filename = $meta['uri'];
$filename = $meta['uri']; //@phpstan-ignore-line
$size = (int) filesize($filename);
if ($size === 0) {