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 ( 0638d8...c8dbbd )
by Luis Ramón
09:14
created
src/AppBundle/Controller/MyStudentController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
         $documentDate = null;
273 273
 
274 274
         /** @var Agreement $a */
275
-        foreach($agreements as $a) {
275
+        foreach ($agreements as $a) {
276 276
             $activities[] = [$a, $this->getDoctrine()->getRepository('AppBundle:Agreement')->getActivitiesStats($a)];
277 277
             if (null === $documentDate || $a->getToDate() > $documentDate) {
278 278
                 $documentDate = $a->getToDate();
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
             $menuItem = $this->get('app.menu_builders_chain')->getMenuItemByRouteName('admin_tutor_group');
372 372
             $backRoute = 'admin_group_student_calendar';
373 373
         } else {
374
-            $breadcrumb =  [
374
+            $breadcrumb = [
375 375
                 ['fixed' => $agreement->getStudent()->getFullDisplayName(), 'path' => 'my_student_agreements', 'options' => ['id' => $agreement->getStudent()->getId()]],
376 376
                 ['fixed' => (string) $agreement->getWorkcenter(), 'path' => 'my_student_agreement_calendar', 'options' => ['id' => $agreement->getId()]],
377 377
                 ['fixed' => $title]
Please login to merge, or discard this patch.