GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( bdd454...fdafab )
by butschster
05:37
created
config/sleeping_owl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     |
46 46
     */
47 47
 
48
-    'middleware' => ['web'],
48
+    'middleware' => [ 'web' ],
49 49
 
50 50
     /*
51 51
     |--------------------------------------------------------------------------
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
          * See https://github.com/NextStepWebs/simplemde-markdown-editor
134 134
          */
135 135
         'simplemde' => [
136
-            'hideIcons' => ['side-by-side', 'fullscreen'],
136
+            'hideIcons' => [ 'side-by-side', 'fullscreen' ],
137 137
         ],
138 138
     ],
139 139
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     | Select default settings for datatable
146 146
     |
147 147
     */
148
-    'datatables' => [],
148
+    'datatables' => [ ],
149 149
 
150 150
     /*
151 151
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.
src/Templates/TemplateDefault.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 {
10 10
     public function __construct()
11 11
     {
12
-        Meta::addJs('admin-default', resources_url('js/admin-app.js'), ['admin-scripts'])
12
+        Meta::addJs('admin-default', resources_url('js/admin-app.js'), [ 'admin-scripts' ])
13 13
             ->addJs('admin-scripts', route('admin.scripts'))
14 14
             ->addCss('admin-default', resources_url('css/admin-app.css'));
15 15
     }
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      *
55 55
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
56 56
      */
57
-    public function view($view, $data = [], $mergeData = [])
57
+    public function view($view, $data = [ ], $mergeData = [ ])
58 58
     {
59 59
         if ($view instanceof \Illuminate\View\View) {
60 60
             return $view->with($data);
Please login to merge, or discard this patch.