Passed
Push — master ( f51c1b...16736d )
by Arthur
05:36
created
config/ide-helper.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -173,8 +173,8 @@
 block discarded – undo
173 173
     | Cast the given "real type" to the given "type".
174 174
     |
175 175
     */
176
-   'type_overrides' => [
176
+    'type_overrides' => [
177 177
         'integer' => 'int',
178 178
         'boolean' => 'bool',
179
-   ],
179
+    ],
180 180
 ];
Please login to merge, or discard this patch.
src/Foundation/Kernels/HttpKernel.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
     protected $middlewareGroups = [
31 31
         'web' => [
32 32
             \Foundation\Middleware\EncryptCookies::class,
33
-             \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
34
-             \Illuminate\Session\Middleware\StartSession::class,
35
-             \Illuminate\View\Middleware\ShareErrorsFromSession::class,
36
-             \Foundation\Middleware\VerifyCsrfToken::class,
33
+                \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
34
+                \Illuminate\Session\Middleware\StartSession::class,
35
+                \Illuminate\View\Middleware\ShareErrorsFromSession::class,
36
+                \Foundation\Middleware\VerifyCsrfToken::class,
37 37
             \Illuminate\Routing\Middleware\SubstituteBindings::class,
38 38
         ],
39 39
 
Please login to merge, or discard this patch.
src/Modules/Notification/Services/NotificationService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
     public function allNotificationsByUser($user)
45 45
     {
46
-       return $this->user->find($user)->notifications;
46
+        return $this->user->find($user)->notifications;
47 47
     }
48 48
 
49 49
     public function unreadNotifcationsByUser($user)
Please login to merge, or discard this patch.
src/Foundation/Providers/TelescopeServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      */
17 17
     public function register()
18 18
     {
19
-         //Telescope::night();
19
+            //Telescope::night();
20 20
 
21 21
         Telescope::filter(function (IncomingEntry $entry) {
22 22
             if ($this->app->environment('local')) {
Please login to merge, or discard this patch.