Passed
Push — master ( 930acb...b95699 )
by Nasrul Hazim
20:22 queued 09:36
created
src/Console/Commands/SeedProfileCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,8 @@
 block discarded – undo
36 36
     public function handle()
37 37
     {
38 38
         foreach (config('profile.seeders') as $seeder) {
39
-            if (! class_exists($seeder)) {
40
-                $this->comment($seeder.'  does not exists');
39
+            if (!class_exists($seeder)) {
40
+                $this->comment($seeder . '  does not exists');
41 41
 
42 42
                 continue;
43 43
             }
Please login to merge, or discard this patch.
workbench/routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 
3 3
 use Illuminate\Support\Facades\Route;
4 4
 
5
-Route::get('/', function () {
5
+Route::get('/', function() {
6 6
     return view('welcome');
7 7
 });
Please login to merge, or discard this patch.
workbench/routes/console.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,6 +3,6 @@
 block discarded – undo
3 3
 use Illuminate\Foundation\Inspiring;
4 4
 use Illuminate\Support\Facades\Artisan;
5 5
 
6
-Artisan::command('inspire', function () {
6
+Artisan::command('inspire', function() {
7 7
     $this->comment(Inspiring::quote());
8 8
 })->purpose('Display an inspiring quote')->hourly();
Please login to merge, or discard this patch.
workbench/bootstrap/app.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@
 block discarded – undo
8 8
 
9 9
 return Application::configure(basePath: $APP_BASE_PATH ?? default_skeleton_path())
10 10
     ->withRouting(
11
-        web: __DIR__.'/../routes/web.php',
12
-        commands: __DIR__.'/../routes/console.php',
11
+        web: __DIR__ . '/../routes/web.php',
12
+        commands: __DIR__ . '/../routes/console.php',
13 13
     )
14
-    ->withMiddleware(function (Middleware $middleware) {
14
+    ->withMiddleware(function(Middleware $middleware) {
15 15
         //
16 16
     })
17
-    ->withExceptions(function (Exceptions $exceptions) {
17
+    ->withExceptions(function(Exceptions $exceptions) {
18 18
         //
19 19
     })->create();
Please login to merge, or discard this patch.