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 b875e32 commit 3bd555aCopy full SHA for 3bd555a
src/Commands/InstallCommand.php
@@ -39,7 +39,7 @@ public function handle()
39
40
protected function phpBinary()
41
{
42
- return (new PhpExecutableFinder)->find(false) ?: 'php';
+ return (new PhpExecutableFinder())->find(false) ?: 'php';
43
}
44
45
private function ensureTailwindConfigExists()
@@ -115,7 +115,7 @@ private function appendTailwindStylesToLayouts()
115
$this->existingLayoutFiles()
116
->each(fn ($file) => File::put(
117
$file,
118
- (new AppendTailwindTag)(File::get($file)),
+ (new AppendTailwindTag())(File::get($file)),
119
));
120
121
0 commit comments