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 Setup Failed
Push — master ( 311795...859c79 )
by Igor
06:22 queued 13s
created
examples/RecurringRoutes/DeleteRouteSchedules.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     $schedules = new Schedules();
19 19
 
20 20
     $res = $schedules->deleteRouteSchedules('66C2AC4A323053FF0A40FEB6918ACF5E');
21
-    echo var_export($res) . PHP_EOL;
21
+    echo var_export($res).PHP_EOL;
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/GetRouteSchedule.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->getRouteSchedule('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/DeleteSchedule.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->deleteSchedule('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/CreateMasterRoute.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     $res = $schedules->createMasterRoute($params);
32 32
 
33
-    echo var_export($res) . PHP_EOL;
33
+    echo var_export($res).PHP_EOL;
34 34
 } catch (\Exception $e) {
35
-    echo $e->getMessage() . PHP_EOL;
35
+    echo $e->getMessage().PHP_EOL;
36 36
 }
Please login to merge, or discard this patch.
examples/RecurringRoutes/IsScheduledRouteCopy.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     $schedules = new Schedules();
19 19
 
20 20
     $res = $schedules->isScheduledRouteCopy('66C2AC4A323053FF0A40FEB6918ACF5E');
21
-    echo var_export($res) . PHP_EOL;
21
+    echo var_export($res).PHP_EOL;
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/GetRouteSchedulePreview.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->getRouteSchedulePreview($route_id, $start, $end);
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.
UnitTestFiles/Test/V5/RecurringRoutesUnitTests.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         $result = $schedules->getAllSchedules();
108 108
 
109 109
         $this->assertIsArray($result);
110
-        if (count($result) > 0) {
110
+        if (count($result)>0) {
111 111
             $this->assertInstanceOf(Schedule::class, $result[0]);
112 112
         }
113 113
     }
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
         $this->assertIsArray($result);
121 121
         $this->assertArrayHasKey('schedules', $result);
122
-        if (count($result['schedules']) > 0) {
122
+        if (count($result['schedules'])>0) {
123 123
             $this->assertInstanceOf(Schedule::class, $result['schedules'][0]);
124 124
         }
125 125
         $this->assertArrayHasKey('page_info', $result);
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         $result = $schedules->getAllRouteSchedules();
180 180
 
181 181
         $this->assertIsArray($result);
182
-        if (count($result) > 0) {
182
+        if (count($result)>0) {
183 183
             $this->assertInstanceOf(RouteSchedule::class, $result[0]);
184 184
         }
185 185
     }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
 
192 192
         $this->assertIsArray($result);
193 193
         $this->assertArrayHasKey('route_schedules', $result);
194
-        if (count($result['route_schedules']) > 0) {
194
+        if (count($result['route_schedules'])>0) {
195 195
             $this->assertInstanceOf(RouteSchedule::class, $result['route_schedules'][0]);
196 196
         }
197 197
         $this->assertArrayHasKey('page_info', $result);
Please login to merge, or discard this patch.
src/Route4Me/V5/RecurringRoutes/RouteSchedule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
     public function __construct(?array $params = null)
37 37
     {
38
-        if ($params !== null) {
38
+        if ($params!==null) {
39 39
             $this->fillFromArray($params);
40 40
         }
41 41
     }
Please login to merge, or discard this patch.
src/Route4Me/V5/RecurringRoutes/PageInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -65,14 +65,14 @@
 block discarded – undo
65 65
 
66 66
     public function __construct(array $links = null, array $meta = null)
67 67
     {
68
-        if ($links !== null && is_array($links)) {
68
+        if ($links!==null && is_array($links)) {
69 69
             $this->url_of_first_page = Common::getValue($links, 'first');
70 70
             $this->url_of_last_page = Common::getValue($links, 'last');
71 71
             $this->url_of_previous_page = Common::getValue($links, 'prev');
72 72
             $this->url_of_next_page = Common::getValue($links, 'next');
73 73
         }
74 74
 
75
-        if ($meta !== null && is_array($meta)) {
75
+        if ($meta!==null && is_array($meta)) {
76 76
             $this->number_of_current_page = Common::getValue($meta, 'current_page');
77 77
             $this->number_of_last_page = Common::getValue($meta, 'last_page');
78 78
             $this->items_per_page = Common::getValue($meta, 'per_page');
Please login to merge, or discard this patch.