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 ( a9bc98...b864c9 )
by butschster
10:50
created
src/Traits/Accessor.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
         } else {
31 31
             $method = 'set'.ucfirst($name);
32 32
             if (method_exists($this, 'set'.ucfirst($name))) {
33
-                $this->attributes[$name] = $this->{$method}($value);
33
+                $this->attributes[ $name ] = $this->{$method}($value);
34 34
             } else {
35
-                $this->attributes[$name] = $value;
35
+                $this->attributes[ $name ] = $value;
36 36
             }
37 37
         }
38 38
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
      */
68 68
     public function __isset($name)
69 69
     {
70
-        return isset($this->attributes[$name]);
70
+        return isset($this->attributes[ $name ]);
71 71
     }
72 72
 
73 73
     /**
@@ -75,6 +75,6 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function __unset($name)
77 77
     {
78
-        unset($this->attributes[$name]);
78
+        unset($this->attributes[ $name ]);
79 79
     }
80 80
 }
Please login to merge, or discard this patch.
src/Auth/Administrator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
      */
33 33
     public function setPasswordAttribute($value)
34 34
     {
35
-        if (! empty($value)) {
36
-            $this->attributes['password'] = bcrypt($value);
35
+        if (!empty($value)) {
36
+            $this->attributes[ 'password' ] = bcrypt($value);
37 37
         }
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
src/Contracts/TemplateInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,5 +23,5 @@
 block discarded – undo
23 23
      *
24 24
      * @return \BladeView|bool|\Illuminate\Contracts\View\Factory|\Illuminate\View\View
25 25
      */
26
-    public function view($view, $data = [], $mergeData = []);
26
+    public function view($view, $data = [ ], $mergeData = [ ]);
27 27
 }
Please login to merge, or discard this patch.
src/Contracts/ModelConfigurationInterface.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,14 +142,14 @@
 block discarded – undo
142 142
      *
143 143
      * @return string
144 144
      */
145
-    public function getDisplayUrl(array $parameters = []);
145
+    public function getDisplayUrl(array $parameters = [ ]);
146 146
 
147 147
     /**
148 148
      * @param array $parameters
149 149
      *
150 150
      * @return string
151 151
      */
152
-    public function getCreateUrl(array $parameters = []);
152
+    public function getCreateUrl(array $parameters = [ ]);
153 153
 
154 154
     /**
155 155
      * @return string
Please login to merge, or discard this patch.
src/Form/FormPanel.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      */
41 41
     public function setItems($items)
42 42
     {
43
-        if (! is_array($items)) {
43
+        if (!is_array($items)) {
44 44
             $items = func_get_args();
45 45
         }
46 46
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function addHeader($items)
70 70
     {
71
-        if (! is_array($items)) {
71
+        if (!is_array($items)) {
72 72
             $items = func_get_args();
73 73
         }
74 74
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function addBody($items)
86 86
     {
87
-        if (! is_array($items)) {
87
+        if (!is_array($items)) {
88 88
             $items = func_get_args();
89 89
         }
90 90
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public function addFooter($items)
106 106
     {
107
-        if (! is_array($items)) {
107
+        if (!is_array($items)) {
108 108
             $items = func_get_args();
109 109
         }
110 110
 
Please login to merge, or discard this patch.
src/Form/Element/View.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,14 +14,14 @@  discard block
 block discarded – undo
14 14
     /**
15 15
      * @var array
16 16
      */
17
-    protected $data = [];
17
+    protected $data = [ ];
18 18
 
19 19
     /**
20 20
      * @param string $view
21 21
      * @param array $data
22 22
      * @param Closure $callback
23 23
      */
24
-    public function __construct($view, array $data = [], Closure $callback = null)
24
+    public function __construct($view, array $data = [ ], Closure $callback = null)
25 25
     {
26 26
         $this->setView($view);
27 27
         $this->setData($data);
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
     {
47 47
         $this->view = $view;
48 48
 
49
-        $this->setDisplay(function ($model) {
50
-            $this->data['model'] = $model;
49
+        $this->setDisplay(function($model) {
50
+            $this->data[ 'model' ] = $model;
51 51
 
52 52
             return view($this->getView(), $this->data);
53 53
         });
Please login to merge, or discard this patch.
src/Form/Element/Checkbox.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@
 block discarded – undo
9 9
     public function save()
10 10
     {
11 11
         $name = $this->getName();
12
-        if (! Request::has($name)) {
13
-            Request::merge([$name => 0]);
12
+        if (!Request::has($name)) {
13
+            Request::merge([ $name => 0 ]);
14 14
         }
15 15
 
16 16
         parent::save();
Please login to merge, or discard this patch.
src/Form/Element/Wysiwyg.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
     /**
20 20
      * @var array
21 21
      */
22
-    protected $parameters = [];
22
+    protected $parameters = [ ];
23 23
 
24 24
     /**
25 25
      * @var bool
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      */
89 89
     public function setHeight($height)
90 90
     {
91
-        $this->parameters['height'] = (int) $height;
91
+        $this->parameters[ 'height' ] = (int) $height;
92 92
 
93 93
         return $this;
94 94
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             $filteredValue = $value;
153 153
         }
154 154
 
155
-        if (! empty($this->filteredFieldKey)) {
155
+        if (!empty($this->filteredFieldKey)) {
156 156
             parent::setValue($model, $attribute, $value);
157 157
             parent::setValue($model, $this->filteredFieldKey, $filteredValue);
158 158
         } else {
Please login to merge, or discard this patch.
src/Form/Element/Custom.php 2 patches
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.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @return $this|Custom|mixed
89
+     * @return string
90 90
      */
91 91
     public function render()
92 92
     {
Please login to merge, or discard this patch.