Completed
Pull Request — master (#2)
by Anton
01:20
created
src/Support/Composer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
src/PaketServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,14 +53,14 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Job/Repositories/JobFileRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -167,6 +167,6 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.