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 14e3685 commit 1ffe36bCopy full SHA for 1ffe36b
src/Analyser/LatteContextAnalyser.php
@@ -41,6 +41,8 @@ final class LatteContextAnalyser
41
42
private LatteContextCollectorRegistry $collectorRegistry;
43
44
+ private string $tmpDir;
45
+
46
/**
47
* @param AbstractLatteContextCollector[] $collectors
48
*/
src/Compiler/Postprocessor.php
@@ -72,7 +72,7 @@ public function getCacheKey(): string
72
$signature = '';
73
foreach ($this->nodeVisitorStorage->getNodeVisitors() as $nodeVisitors) {
74
foreach ($nodeVisitors as $nodeVisitor) {
75
- $signature .= $nodeVisitor::class;
+ $signature .= get_class($nodeVisitor);
76
}
77
78
return md5($signature);
0 commit comments