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 ( de2a9f...1034b2 )
by
unknown
02:02 queued 43s
created
src/Store/Store.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,7 @@
 block discarded – undo
75 75
   protected function itemizeSplitHour(array $existing_events, array &$itemized, $value, $unit_id, $year, $month, $day, $hour) {
76 76
     if (isset($existing_events[$unit_id][EVENT::BAT_HOUR][$year][$month][$day][$hour])) {
77 77
       $existing_value = $existing_events[$unit_id][EVENT::BAT_HOUR][$year][$month][$day][$hour];
78
-    }
79
-    else {
78
+    } else {
80 79
       $existing_value = $existing_events[$unit_id][EVENT::BAT_DAY][$year][$month][$day];
81 80
     }
82 81
     if ($value === -1 && $existing_value > 0) {
Please login to merge, or discard this patch.
src/Store/SqlLiteDBStore.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -112,8 +112,7 @@
 block discarded – undo
112 112
             $command = rtrim($command, ',');
113 113
             $command .= " WHERE unit_id = " . $unit_id . " AND year = $year AND month = $month";
114 114
             $this->pdo->exec($command);
115
-          }
116
-          else {
115
+          } else {
117 116
             $this->pdo->exec("INSERT INTO $this->day_table (unit_id, year, month, " . implode(', ', $keys) . ") VALUES (" . $unit_id . ", $year, $month, " . implode(', ', $values) . ")");
118 117
           }
119 118
         }
Please login to merge, or discard this patch.