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.
Test Failed
Push — master ( bce16d...c0405e )
by Igor
10:03 queued 08:23
created
examples/RecurringRoutes/CreateDeleteSchedule.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     }
34 34
     $route = null;
35 35
 
36
-    if ($route_id === null) {
36
+    if ($route_id===null) {
37 37
         throw new ApiError('There is no any route.');
38 38
     }
39 39
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     }
52 52
     $vehicle = null;
53 53
 
54
-    if ($vehicle_id === null) {
54
+    if ($vehicle_id===null) {
55 55
         throw new ApiError('There is no any vehicle.');
56 56
     }
57 57
 
@@ -83,5 +83,5 @@  discard block
 block discarded – undo
83 83
 
84 84
     print_r($route_schedule);
85 85
 } catch (\Exception $e) {
86
-    echo $e->getMessage() . PHP_EOL;
86
+    echo $e->getMessage().PHP_EOL;
87 87
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/CreateRouteSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,5 +26,5 @@
 block discarded – undo
26 26
 
27 27
     print_r($schedule);
28 28
 } catch (\Exception $e) {
29
-    echo $e->getMessage() . PHP_EOL;
29
+    echo $e->getMessage().PHP_EOL;
30 30
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/CreateSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,5 +30,5 @@
 block discarded – undo
30 30
 
31 31
     print_r($schedule);
32 32
 } catch (\Exception $e) {
33
-    echo $e->getMessage() . PHP_EOL;
33
+    echo $e->getMessage().PHP_EOL;
34 34
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/GetSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,5 +20,5 @@
 block discarded – undo
20 20
     $schedule = $schedules->getSchedule('1515E9A65DD2DEF79CAD7A7E68D91515');
21 21
     print_r($schedule);
22 22
 } catch (\Exception $e) {
23
-    echo $e->getMessage() . PHP_EOL;
23
+    echo $e->getMessage().PHP_EOL;
24 24
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/GetScheduledRoutesCopies.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,5 +23,5 @@
 block discarded – undo
23 23
     $schedule = $schedules->getScheduledRoutesCopies($route_id, $schedule_uid, $route_date);
24 24
     print_r($schedule);
25 25
 } catch (\Exception $e) {
26
-    echo $e->getMessage() . PHP_EOL;
26
+    echo $e->getMessage().PHP_EOL;
27 27
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/GetSchedules.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     $list = $schedules->getAllSchedules();
23 23
     print_r($list);
24 24
 } catch (\Exception $e) {
25
-    echo $e->getMessage() . PHP_EOL;
25
+    echo $e->getMessage().PHP_EOL;
26 26
 }
27 27
 
28 28
 //**********************************************************************
@@ -31,5 +31,5 @@  discard block
 block discarded – undo
31 31
     $list = $schedules->getSchedules(2, 5);
32 32
     print_r($list);
33 33
 } catch (\Exception $e) {
34
-    echo $e->getMessage() . PHP_EOL;
34
+    echo $e->getMessage().PHP_EOL;
35 35
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/GetRouteSchedules.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     $list = $schedules->getAllRouteSchedules();
23 23
     print_r($list);
24 24
 } catch (\Exception $e) {
25
-    echo $e->getMessage() . PHP_EOL;
25
+    echo $e->getMessage().PHP_EOL;
26 26
 }
27 27
 
28 28
 //**********************************************************************
@@ -31,5 +31,5 @@  discard block
 block discarded – undo
31 31
     $list = $schedules->getRouteSchedules(1, 5);
32 32
     print_r($list);
33 33
 } catch (\Exception $e) {
34
-    echo $e->getMessage() . PHP_EOL;
34
+    echo $e->getMessage().PHP_EOL;
35 35
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/DeleteRouteSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,5 +20,5 @@
 block discarded – undo
20 20
     $schedule = $schedules->deleteRouteSchedule('66C2AC4A323053FF0A40FEB6918ACF5E');
21 21
     print_r($schedule);
22 22
 } catch (\Exception $e) {
23
-    echo $e->getMessage() . PHP_EOL;
23
+    echo $e->getMessage().PHP_EOL;
24 24
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/ReplaceRouteSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,5 +28,5 @@
 block discarded – undo
28 28
 
29 29
     print_r($schedule);
30 30
 } catch (\Exception $e) {
31
-    echo $e->getMessage() . PHP_EOL;
31
+    echo $e->getMessage().PHP_EOL;
32 32
 }
Please login to merge, or discard this patch.