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 ( ad80fd...57ed57 )
by Dave
06:02
created
src/Display/Column/Editable/DateTime.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,8 +80,8 @@  discard block
 block discarded – undo
80 80
      */
81 81
     protected function getFormatedDate($date)
82 82
     {
83
-        if (! is_null($date)) {
84
-            if (! $date instanceof Carbon) {
83
+        if (!is_null($date)) {
84
+            if (!$date instanceof Carbon) {
85 85
                 $date = Carbon::parse($date);
86 86
             }
87 87
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     public function getValueFromModel()
98 98
     {
99 99
         $value = parent::getValueFromModel();
100
-        if (! empty($value)) {
100
+        if (!empty($value)) {
101 101
             return $this->parseValue($value);
102 102
         }
103 103
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     public function setModelAttribute($value)
133 133
     {
134
-        $value = ! empty($value)
134
+        $value = !empty($value)
135 135
             ? Carbon::createFromFormat($this->getPickerFormat(), $value, $this->getTimezone())
136 136
                 ->timezone(config('app.timezone'))->format($this->getFormat())
137 137
             : null;
Please login to merge, or discard this patch.