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 — development ( 728916...fea011 )
by Dave
07:04
created
Category
src/Display/Extension/Tree.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
 
153 153
     public function initialize()
154 154
     {
155
-        $this->allWithControl()->each(function (ColumnInterface $column) {
155
+        $this->allWithControl()->each(function(ColumnInterface $column) {
156 156
             $column->initialize();
157 157
         });
158 158
 
Please login to merge, or discard this patch.
src/Form/Element/Select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function getOptions()
56 56
     {
57
-        if (! is_null($this->getModelForOptions()) && ! is_null($this->getDisplay())) {
57
+        if (!is_null($this->getModelForOptions()) && !is_null($this->getDisplay())) {
58 58
             $this->setOptions(
59 59
                 $this->loadOptions()
60 60
             );
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      */
136 136
     public function exclude($keys)
137 137
     {
138
-        if (! is_array($keys)) {
138
+        if (!is_array($keys)) {
139 139
             $keys = func_get_args();
140 140
         }
141 141
 
Please login to merge, or discard this patch.
src/Display/Column/DateTime.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,8 +74,8 @@
 block discarded – undo
74 74
      */
75 75
     protected function getFormatedDate($date)
76 76
     {
77
-        if (! is_null($date)) {
78
-            if (! $date instanceof Carbon) {
77
+        if (!is_null($date)) {
78
+            if (!$date instanceof Carbon) {
79 79
                 $date = Carbon::parse($date);
80 80
             }
81 81
 
Please login to merge, or discard this patch.
src/Templates/Template.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
      */
102 102
     public function assetPath($path = null)
103 103
     {
104
-        return ! is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir();
104
+        return !is_null($path) ? $this->assetDir().'/'.ltrim($path, '/') : $this->assetDir();
105 105
     }
106 106
 
107 107
     /**
Please login to merge, or discard this patch.
src/Display/Column/Editable/Select.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      */
80 80
     public function getOptions()
81 81
     {
82
-        if (! is_null($this->getModelForOptions()) && ! is_null($this->getDisplay())) {
82
+        if (!is_null($this->getModelForOptions()) && !is_null($this->getDisplay())) {
83 83
             $this->setOptions(
84 84
                 $this->loadOptions()
85 85
             );
Please login to merge, or discard this patch.
resources/views/default/display/extensions/columns.blade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
                 if ($column instanceof \SleepingOwl\Admin\Display\Column\Control) {
26 26
                     $column->initialize();
27 27
                 }
28
-                if($column instanceof \SleepingOwl\Admin\Contracts\Display\ColumnEditableInterface) {
28
+                if ($column instanceof \SleepingOwl\Admin\Contracts\Display\ColumnEditableInterface) {
29 29
                 ?>
30 30
 
31 31
                 <td>
Please login to merge, or discard this patch.