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 ( da8966...225c03 )
by Marceau
01:56
created
src/Fields/DatePickerField.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -62,12 +62,10 @@  discard block
 block discarded – undo
62 62
         if ($date instanceof Carbon)
63 63
         {
64 64
             $this->date_min = $date->format($this->date_format);
65
-        }
66
-        else if (is_string($date))
65
+        } else if (is_string($date))
67 66
         {
68 67
             $this->date_min = $date;
69
-        }
70
-        else
68
+        } else
71 69
         {
72 70
             throw new InvalidArgumentException("Min date must be a string or a Carbon instance.");
73 71
         }
@@ -85,12 +83,10 @@  discard block
 block discarded – undo
85 83
         if ($date instanceof Carbon)
86 84
         {
87 85
             $this->date_max = $date->format($this->date_format);
88
-        }
89
-        else if (is_string($date))
86
+        } else if (is_string($date))
90 87
         {
91 88
             $this->date_max = $date;
92
-        }
93
-        else
89
+        } else
94 90
         {
95 91
             throw new InvalidArgumentException("Max date must be a string or a Carbon instance.");
96 92
         }
Please login to merge, or discard this patch.