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 ( 414922...a9bc98 )
by butschster
12:35
created
src/Repository/BaseRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * Eager loading relations.
26 26
      * @var string[]
27 27
      */
28
-    protected $with = [];
28
+    protected $with = [ ];
29 29
 
30 30
     /**
31 31
      * @param string $class
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     public function with($with)
74 74
     {
75
-        if (! is_array($with)) {
75
+        if (!is_array($with)) {
76 76
             $with = func_get_args();
77 77
         }
78 78
 
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     public function hasColumn($column)
179 179
     {
180 180
         $table = $this->getModel()->getTable();
181
-        $columns = Cache::remember('admin.columns.'.$table, 60, function () use ($table) {
181
+        $columns = Cache::remember('admin.columns.'.$table, 60, function() use ($table) {
182 182
             return Schema::getColumnListing($table);
183 183
         });
184 184
 
Please login to merge, or discard this patch.
resources/lang/pt_BR/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,6 +62,6 @@
 block discarded – undo
62 62
     |
63 63
     */
64 64
 
65
-    'attributes'              => [],
65
+    'attributes'              => [ ],
66 66
 
67 67
 ];
Please login to merge, or discard this patch.
resources/lang/en/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
     |
88 88
     */
89 89
 
90
-    'attributes' => [],
90
+    'attributes' => [ ],
91 91
 
92 92
 ];
Please login to merge, or discard this patch.
resources/lang/zh-CN/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
     |
88 88
     */
89 89
 
90
-    'attributes' => [],
90
+    'attributes' => [ ],
91 91
 
92 92
 ];
Please login to merge, or discard this patch.
resources/lang/ru/validation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,6 +87,6 @@
 block discarded – undo
87 87
     |
88 88
     */
89 89
 
90
-    'attributes' => [],
90
+    'attributes' => [ ],
91 91
 
92 92
 ];
Please login to merge, or discard this patch.
src/Wysiwyg/Editor.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
      * @param WysiwygFilterInterface|null $filter
46 46
      * @param array                       $config
47 47
      */
48
-    public function __construct($id, $name = null, WysiwygFilterInterface $filter = null, array $config = [])
48
+    public function __construct($id, $name = null, WysiwygFilterInterface $filter = null, array $config = [ ])
49 49
     {
50 50
         $this->id = $id;
51 51
         $this->name = is_null($name) ? studly_case($id) : $name;
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
 
141 141
     public function __call($method, $arguments)
142 142
     {
143
-        if (in_array($method, ['js', 'css'])) {
144
-            call_user_func_array([$this->getPackage(), $method], $arguments);
143
+        if (in_array($method, [ 'js', 'css' ])) {
144
+            call_user_func_array([ $this->getPackage(), $method ], $arguments);
145 145
 
146 146
             return $this;
147 147
         }
Please login to merge, or discard this patch.
src/Display/Filter/FilterField.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
             $relationName = implode('.', $parts);
39 39
         }
40 40
 
41
-        if (! is_null($relationName)) {
42
-            $query->whereHas($relationName, function ($q) use ($name, $value) {
41
+        if (!is_null($relationName)) {
42
+            $query->whereHas($relationName, function($q) use ($name, $value) {
43 43
                 $this->buildQuery($q, $name, $value);
44 44
             });
45 45
         } else {
Please login to merge, or discard this patch.
src/Display/Filter/FilterCustom.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function __construct(Closure $callback = null)
26 26
     {
27
-        if (! is_null($callback)) {
27
+        if (!is_null($callback)) {
28 28
             $this->setCallback($callback);
29 29
         }
30 30
 
Please login to merge, or discard this patch.
src/Display/DisplayTabbed.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     {
44 44
         $this->initializeElements();
45 45
 
46
-        $activeTabs = $this->getTabs()->filter(function (TabInterface $tab) {
46
+        $activeTabs = $this->getTabs()->filter(function(TabInterface $tab) {
47 47
             return $tab->isActive();
48 48
         })->count();
49 49
 
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      */
58 58
     public function setModelClass($class)
59 59
     {
60
-        $this->getTabs()->each(function (TabInterface $tab) use ($class) {
60
+        $this->getTabs()->each(function(TabInterface $tab) use ($class) {
61 61
             if ($tab instanceof DisplayInterface) {
62 62
                 $tab->setModelClass($class);
63 63
             }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function setAction($action)
139 139
     {
140
-        $this->getTabs()->each(function (TabInterface $tab) use ($action) {
140
+        $this->getTabs()->each(function(TabInterface $tab) use ($action) {
141 141
             if ($tab instanceof FormInterface) {
142 142
                 $tab->setAction($action);
143 143
             }
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
      */
150 150
     public function setId($id)
151 151
     {
152
-        $this->getTabs()->each(function (TabInterface $tab) use ($id) {
152
+        $this->getTabs()->each(function(TabInterface $tab) use ($id) {
153 153
             if ($tab instanceof FormInterface) {
154 154
                 $tab->setId($id);
155 155
             }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
         foreach ($this->getTabs() as $tab) {
167 167
             if ($tab instanceof FormInterface) {
168 168
                 $result = $tab->validateForm($model);
169
-                if (! is_null($result)) {
169
+                if (!is_null($result)) {
170 170
                     return $result;
171 171
                 }
172 172
             }
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
      */
179 179
     public function saveForm(ModelConfigurationInterface $model)
180 180
     {
181
-        $this->getTabs()->each(function (TabInterface $tab) use ($model) {
181
+        $this->getTabs()->each(function(TabInterface $tab) use ($model) {
182 182
             if ($tab instanceof FormInterface) {
183 183
                 $tab->saveForm($model);
184 184
             }
Please login to merge, or discard this patch.