We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a92dc3e commit 59124d7Copy full SHA for 59124d7
src/Compiler/Compiler.php
@@ -64,7 +64,7 @@ public function isExpired(string $path): bool
64
return true;
65
}
66
67
- return $this->files->lastModified($path) >=
68
- $this->files->lastModified($compiled);
+ return $this->files->lastModified($path)
+ >= $this->files->lastModified($compiled);
69
70
src/Component/DynamicComponent.php
@@ -122,8 +122,8 @@ protected function classForComponent(): string
122
return $this->componentClasses[$this->component];
123
124
125
- return $this->componentClasses[$this->component] =
126
- $this->compiler()->componentClass($this->component);
+ return $this->componentClasses[$this->component]
+ = $this->compiler()->componentClass($this->component);
127
128
129
/**
0 commit comments