Completed
Push — master ( 45e4b7...6d9e41 )
by Chris
04:14 queued 01:51
created
app/Providers/RouteServiceProvider.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
     protected function mapWebRoutes()
53 53
     {
54 54
         Route::middleware('web')
55
-             ->namespace($this->namespace)
56
-             ->group(base_path('routes/web.php'));
55
+              ->namespace($this->namespace)
56
+              ->group(base_path('routes/web.php'));
57 57
     }
58 58
 
59 59
     /**
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
     protected function mapApiRoutes()
67 67
     {
68 68
         Route::prefix('api')
69
-             ->middleware('api')
70
-             ->namespace($this->namespace)
71
-             ->group(base_path('routes/api.php'));
69
+              ->middleware('api')
70
+              ->namespace($this->namespace)
71
+              ->group(base_path('routes/api.php'));
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
app/Providers/AppServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function boot()
16 16
     {
17 17
         //Fix Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
18
-       // Schema::defaultStringLength(191);
18
+        // Schema::defaultStringLength(191);
19 19
     }
20 20
 
21 21
     /**
Please login to merge, or discard this patch.
app/SlashCommandHandlers/Jobs/SearchTDTicketJob.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -68,10 +68,10 @@
 block discarded – undo
68 68
 
69 69
         if ($opencount > 0) {
70 70
             $this
71
-             ->respondToSlack('
Please login to merge, or discard this patch.
app/SlashCommandHandlers/Jobs/ShowTDTicketJob.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -53,17 +53,17 @@
 block discarded – undo
53 53
             $attachmentFields[] = AttachmentField::create('Date Opened', $date)->displaySideBySide();
54 54
 
55 55
             $this
56
-               ->respondToSlack("
Please login to merge, or discard this patch.