We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 604fa51 commit 9d8a769Copy full SHA for 9d8a769
1 file changed
src/Model/TemplateEngine/Decorator/InspectorHintsFactory.php
@@ -38,10 +38,13 @@ public function create(array $data = []): InspectorHints
38
);
39
}
40
41
+ // Extract random generator to satisfy PHPStan (readonly property usage detection)
42
+ $randomGenerator = $this->random;
43
+
44
return new InspectorHints(
45
$subject,
46
(bool)$showBlockHints,
- $this->random
47
+ $randomGenerator
48
49
50
0 commit comments