@@ -20,7 +20,7 @@ class InstallCommand extends Command
20
20
21
21
protected $ description = 'Installs the Tailwind CSS scaffolding for new Laravel applications. ' ;
22
22
23
- public function handle ()
23
+ public function handle (): int
24
24
{
25
25
$ this ->ensureTailwindConfigExists ();
26
26
$ this ->ensureTailwindCliBinaryExists ();
@@ -31,32 +31,32 @@ public function handle()
31
31
32
32
$ this ->newLine ();
33
33
34
- $ this ->components ->info ('TailwindCSS Laravel was installed successfully. ' );
34
+ $ this ->components ->info ('Tailwind CSS Laravel was installed successfully. ' );
35
35
36
36
return self ::SUCCESS ;
37
37
}
38
38
39
- protected function phpBinary ()
39
+ protected function phpBinary (): string
40
40
{
41
41
return (new PhpExecutableFinder )->find (false ) ?: 'php ' ;
42
42
}
43
43
44
- private function ensureTailwindConfigExists ()
44
+ private function ensureTailwindConfigExists (): void
45
45
{
46
46
$ this ->copyStubToApp (
47
47
stub: __DIR__ . '/../../stubs/postcss.config.js ' ,
48
48
to: base_path ('postcss.config.js ' ),
49
49
);
50
50
51
- if (! File::exists ($ appCssFilePath = resource_path ('css/app.css ' )) || empty (trim (File::get ($ appCssFilePath ))) || $ this ->mainCssIsDefault ($ appCssFilePath )) {
51
+ if (! File::exists ($ appCssFilePath = resource_path ('css/app.css ' )) || in_array (trim (File::get ($ appCssFilePath )), [ '' , ' 0 ' ], true ) || $ this ->mainCssIsDefault ($ appCssFilePath )) {
52
52
$ this ->copyStubToApp (
53
53
stub: __DIR__ . '/../../stubs/resources/css/app.css ' ,
54
54
to: $ appCssFilePath ,
55
55
);
56
56
}
57
57
}
58
58
59
- private function ensureTailwindCliBinaryExists ()
59
+ private function ensureTailwindCliBinaryExists (): void
60
60
{
61
61
if (! File::exists (config ('tailwindcss.bin_path ' )) || $ this ->option ('download ' )) {
62
62
Process::forever ()->tty (SymfonyProcess::isTtySupported ())->run ([
@@ -65,7 +65,7 @@ private function ensureTailwindCliBinaryExists()
65
65
'tailwindcss:download ' ,
66
66
'--cli-version ' ,
67
67
$ this ->option ('cli-version ' ) ?: config ('tailwindcss.version ' ),
68
- ], function ($ _type , $ output ) {
68
+ ], function ($ _type , $ output ): void {
69
69
$ this ->output ->write ($ output );
70
70
});
71
71
}
@@ -80,12 +80,9 @@ private function copyStubToApp(string $stub, string $to): void
80
80
/**
81
81
* Install the middleware to a group in the application Http Kernel.
82
82
*
83
- * @param string $after
84
- * @param string $name
85
83
* @param string $group
86
- * @return void
87
84
*/
88
- private function installMiddlewareAfter ($ after , $ name , $ group = 'web ' )
85
+ private function installMiddlewareAfter (string $ after , string $ name , $ group = 'web ' ): void
89
86
{
90
87
$ httpKernel = file_get_contents (app_path ('Http/Kernel.php ' ));
91
88
@@ -109,7 +106,7 @@ private function installMiddlewareAfter($after, $name, $group = 'web')
109
106
));
110
107
}
111
108
112
- private function appendTailwindStylesToLayouts ()
109
+ private function appendTailwindStylesToLayouts (): void
113
110
{
114
111
$ this ->existingLayoutFiles ()
115
112
->each (fn ($ file ) => File::put (
@@ -125,7 +122,7 @@ private function existingLayoutFiles()
125
122
->filter (fn ($ file ) => File::exists ($ file ));
126
123
}
127
124
128
- private function installMiddleware (string $ middleware )
125
+ private function installMiddleware (string $ middleware ): void
129
126
{
130
127
if (file_exists (app_path ('Http/Kernel.php ' ))) {
131
128
$ this ->installMiddlewareAfter ('SubstituteBindings::class ' , $ middleware );
@@ -134,7 +131,7 @@ private function installMiddleware(string $middleware)
134
131
}
135
132
}
136
133
137
- private function installMiddlewareToBootstrap (string $ middleware , string $ group = 'web ' , string $ modifier = 'append ' )
134
+ private function installMiddlewareToBootstrap (string $ middleware , string $ group = 'web ' , string $ modifier = 'append ' ): void
138
135
{
139
136
$ bootstrapApp = file_get_contents (base_path ('bootstrap/app.php ' ));
140
137
@@ -155,9 +152,9 @@ private function installMiddlewareToBootstrap(string $middleware, string $group
155
152
file_put_contents (base_path ('bootstrap/app.php ' ), $ bootstrapApp );
156
153
}
157
154
158
- private function addIngoreLines ()
155
+ private function addIngoreLines (): void
159
156
{
160
- $ binary = basename (config ('tailwindcss.bin_path ' ));
157
+ $ binary = basename (( string ) config ('tailwindcss.bin_path ' ));
161
158
162
159
if (str_contains (File::get (base_path ('.gitignore ' )), $ binary )) {
163
160
return ;
@@ -172,13 +169,13 @@ private function addIngoreLines()
172
169
LINES );
173
170
}
174
171
175
- private function runFirstBuild ()
172
+ private function runFirstBuild (): void
176
173
{
177
174
Process::forever ()->tty (SymfonyProcess::isTtySupported ())->run ([
178
175
$ this ->phpBinary (),
179
176
'artisan ' ,
180
177
'tailwindcss:build ' ,
181
- ], function ($ _type , $ output ) {
178
+ ], function ($ _type , $ output ): void {
182
179
$ this ->output ->write ($ output );
183
180
});
184
181
}
0 commit comments