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 ( 6dbf99...b798ff )
by
unknown
05:35
created
src/Constraint/ConstraintManager.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
   protected function normalizeMinMaxDaysConstraints() {
97 97
     $new_constraints = array();
98 98
 
99
-    $constraints = array_map(function ($object) { return clone $object; }, $this->constraints['Roomify\Bat\Constraint\MinMaxDaysConstraint']);
99
+    $constraints = array_map(function($object) { return clone $object; }, $this->constraints['Roomify\Bat\Constraint\MinMaxDaysConstraint']);
100 100
 
101 101
     foreach (array_reverse($constraints) as $constraint) {
102 102
       $start_date = $constraint->getStartDate();
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
   protected function normalizeCheckInDayConstraints() {
173 173
     $new_constraints = array();
174 174
 
175
-    $constraints = array_map(function ($object) { return clone $object; }, $this->constraints['Roomify\Bat\Constraint\CheckInDayConstraint']);
175
+    $constraints = array_map(function($object) { return clone $object; }, $this->constraints['Roomify\Bat\Constraint\CheckInDayConstraint']);
176 176
 
177 177
     foreach (array_reverse($constraints) as $constraint) {
178 178
       $start_date = $constraint->getStartDate();
Please login to merge, or discard this patch.