@@ -62,7 +62,7 @@ |
||
62 | 62 | /** |
63 | 63 | * Regenerate the Composer autoloader files. |
64 | 64 | * |
65 | - * @param array $extra |
|
65 | + * @param string[] $extra |
|
66 | 66 | * @return void |
67 | 67 | */ |
68 | 68 | public function dumpAutoload(array $extra = []): void |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | |
180 | 180 | private function getComposerExecutable(): array |
181 | 181 | { |
182 | - if ($this->files->exists($this->workingPath . '/composer.phar')) { |
|
182 | + if ($this->files->exists($this->workingPath.'/composer.phar')) { |
|
183 | 183 | return [$this->getPhpBinary(), 'composer.phar']; |
184 | 184 | } |
185 | 185 | |
@@ -198,6 +198,6 @@ discard block |
||
198 | 198 | |
199 | 199 | private function addLineToLogFile(string $jobLogFile, string $line): void |
200 | 200 | { |
201 | - $this->files->append($jobLogFile, $line . "\n"); |
|
201 | + $this->files->append($jobLogFile, $line."\n"); |
|
202 | 202 | } |
203 | 203 | } |
@@ -53,14 +53,14 @@ discard block |
||
53 | 53 | |
54 | 54 | private function registerResources(): void |
55 | 55 | { |
56 | - $this->loadViewsFrom(__DIR__ . '/../resources/views', 'paket'); |
|
56 | + $this->loadViewsFrom(__DIR__.'/../resources/views', 'paket'); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | private function registerPublishes(): void |
60 | 60 | { |
61 | 61 | if ($this->app->runningInConsole()) { |
62 | 62 | $this->publishes([ |
63 | - __DIR__ . '/../public' => public_path('vendor/paket'), |
|
63 | + __DIR__.'/../public' => public_path('vendor/paket'), |
|
64 | 64 | ], 'paket-assets'); |
65 | 65 | } |
66 | 66 | } |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | private function registerRoutes(): void |
69 | 69 | { |
70 | 70 | Route::group($this->getRouteConfiguration(), function () { |
71 | - $this->loadRoutesFrom(__DIR__ . '/../routes/web.php'); |
|
71 | + $this->loadRoutesFrom(__DIR__.'/../routes/web.php'); |
|
72 | 72 | }); |
73 | 73 | } |
74 | 74 |
@@ -167,6 +167,6 @@ |
||
167 | 167 | |
168 | 168 | private function getIndexFilePath(): string |
169 | 169 | { |
170 | - return $this->storagePath . '/jobs.json'; |
|
170 | + return $this->storagePath.'/jobs.json'; |
|
171 | 171 | } |
172 | 172 | } |