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 ( 0c8258...8d1f3d )
by Luis Ramón
24:24 queued 21:31
created
src/AppBundle/Controller/BaseController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -282,12 +282,12 @@
 block discarded – undo
282 282
         $noActivity = htmlentities($translator->trans('form.no_activities', [], 'calendar'));
283 283
         $noWorkday = htmlentities($translator->trans('form.no_workday', [], 'calendar'));
284 284
 
285
-        foreach($weekDays as $workDay) {
285
+        foreach ($weekDays as $workDay) {
286 286
             $day = $workDay->getDate()->format('N');
287 287
             $activities[$day] = '';
288 288
             $hours[$day] = '';
289 289
 
290
-            foreach($workDay->getTrackingActivities() as $trackingActivity) {
290
+            foreach ($workDay->getTrackingActivities() as $trackingActivity) {
291 291
                 $activities[$day] .= '<li style="list-style-position: inside; list-style: square;">';
292 292
                 if ($trackingActivity->getActivity()->getCode()) {
293 293
                     $activities[$day] .= '<b>' . htmlentities($trackingActivity->getActivity()->getCode()) . ': </b>';
Please login to merge, or discard this patch.
src/AppBundle/Entity/WorkdayRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -233,7 +233,7 @@
 block discarded – undo
233 233
         $workDays = $workday->getAgreement()->getWorkdays();
234 234
 
235 235
         /** @var Workday $day */
236
-        foreach($workDays as $day) {
236
+        foreach ($workDays as $day) {
237 237
             $numWeek = $day->getDate()->format('W');
238 238
 
239 239
             if ($numWeek != $oldNumWeek) {
Please login to merge, or discard this patch.
src/AppBundle/Entity/LearningOutcomeRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
         $outcomes = new ArrayCollection();
16 16
 
17 17
         /** @var Activity $activity */
18
-        foreach($activities as $activity) {
18
+        foreach ($activities as $activity) {
19 19
             if (false === $outcomes->contains($activity->getLearningOutcome())) {
20 20
                 $outcomes->add($activity->getLearningOutcome());
21 21
             }
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $learningOutcomes = $this->getFromAgreement($agreement);
31 31
         $result = [];
32 32
 
33
-        foreach($learningOutcomes as $learningOutcome) {
33
+        foreach ($learningOutcomes as $learningOutcome) {
34 34
             $item = [];
35 35
             $item['learning_outcome'] = $learningOutcome;
36 36
             $item['activities'] = $this->getEntityManager()->getRepository('AppBundle:Activity')->getFromAgreementAndLearningOutcome($agreement, $learningOutcome);
Please login to merge, or discard this patch.