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
Pull Request — development (#841)
by Dave
12:07 queued 05:52
created
src/Display/Column/Editable/DateTime.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
      */
77 77
     protected function getFormatedDate($date)
78 78
     {
79
-        if (! is_null($date)) {
80
-            if (! $date instanceof Carbon) {
79
+        if (!is_null($date)) {
80
+            if (!$date instanceof Carbon) {
81 81
                 $date = Carbon::parse($date);
82 82
             }
83 83
 
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     public function getValueFromModel()
94 94
     {
95 95
         $value = parent::getValueFromModel();
96
-        if (! empty($value)) {
96
+        if (!empty($value)) {
97 97
             return $this->parseValue($value);
98 98
         }
99 99
     }
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      */
126 126
     public function setModelAttribute($value)
127 127
     {
128
-        $value = ! empty($value)
128
+        $value = !empty($value)
129 129
             ? Carbon::createFromFormat($this->getPickerFormat(), $value, $this->getTimezone())
130 130
                 ->timezone(config('app.timezone'))->format($this->getFormat())
131 131
             : null;
Please login to merge, or discard this patch.