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
Branch master (c7ba10)
by Richard
02:38
created
cli/dumpSessionToCsv.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 $app = require(dirname(__DIR__) . '/www/app.php');
12 12
 
13
-$outFile = dirname(__DIR__) .'/log/setlist-' . date('Ymd-His') . '.csv';
13
+$outFile = dirname(__DIR__) . '/log/setlist-' . date('Ymd-His') . '.csv';
14 14
 
15 15
 $exporter = new \Phase\TakeATicket\PlaylistExporter($app['db']);
16 16
 $exporter->exportToFile($outFile);
Please login to merge, or discard this patch.
www/app.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         'logout' => array(
103 103
             'logout_path' => '/user/logout',
104 104
         ),
105
-        'users' => $app->share(function ($app) {
105
+        'users' => $app->share(function($app) {
106 106
             return $app['user.manager'];
107 107
         }),
108 108
     ),
Please login to merge, or discard this patch.
src/Phase/TakeATicket/ControllerProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $app['twig'] = $app->share(
40 40
             $app->extend(
41 41
                 'twig',
42
-                function (\Twig_Environment $twig, $app) {
42
+                function(\Twig_Environment $twig, $app) {
43 43
                     // add custom globals, filters, tags, ...
44 44
                     $engine = new MichelfMarkdownEngine();
45 45
                     $twig->addExtension(new MarkdownExtension($engine));
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         );
50 50
 
51 51
         $app['ticket.controller'] = $app->share(
52
-            function (Application $app) {
52
+            function(Application $app) {
53 53
                 return new Controller($app);
54 54
             }
55 55
         );
Please login to merge, or discard this patch.
src/Phase/TakeATicket/PlaylistExporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 
95 95
         if (is_array($band) && !empty($band[$instrument])) {
96 96
             $performers = array_map(
97
-                function ($performer) {
97
+                function($performer) {
98 98
                     return $performer['performerName'];
99 99
                 },
100 100
                 $band[$instrument]
Please login to merge, or discard this patch.
src/Phase/TakeATicket/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -367,7 +367,7 @@
 block discarded – undo
367 367
     protected function setJsonErrorHandler()
368 368
     {
369 369
         /** @noinspection PhpUnusedParameterInspection */
370
-        $this->app->error(function (\Exception $e, $code) {
370
+        $this->app->error(function(\Exception $e, $code) {
371 371
             $message = 'Threw ' . get_class($e) . ': ' . $e->getMessage();
372 372
             return new JsonResponse(['error' => $message]);
373 373
         });
Please login to merge, or discard this patch.