Skip to content

Commit 59124d7

Browse files
authored
Format code
1 parent a92dc3e commit 59124d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Compiler/Compiler.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function isExpired(string $path): bool
6464
return true;
6565
}
6666

67-
return $this->files->lastModified($path) >=
68-
$this->files->lastModified($compiled);
67+
return $this->files->lastModified($path)
68+
>= $this->files->lastModified($compiled);
6969
}
7070
}

src/Component/DynamicComponent.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ protected function classForComponent(): string
122122
return $this->componentClasses[$this->component];
123123
}
124124

125-
return $this->componentClasses[$this->component] =
126-
$this->compiler()->componentClass($this->component);
125+
return $this->componentClasses[$this->component]
126+
= $this->compiler()->componentClass($this->component);
127127
}
128128

129129
/**

0 commit comments

Comments
 (0)