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 — develop ( 467c2a...fdb351 )
by Stuart
05:47
created
src/php/DataSift/Storyplayer/Console/UbLangConsole.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
             $this->writePhaseGroupFailed($phaseResult->getPhaseResultString());
206 206
         }
207 207
         else if ($phaseResult->getPhaseIsIncomplete() || $phaseResult->getPhaseIsBlacklisted()) {
208
-            $this->writePhaseGroupSkipped( $phaseResult->getPhaseResultString());
208
+            $this->writePhaseGroupSkipped($phaseResult->getPhaseResultString());
209 209
         }
210 210
         $this->write(PHP_EOL);
211 211
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/PlayerLib/Story.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
     public function getScenario()
528 528
     {
529 529
         if ($this->storyScenario === null) {
530
-            return [ "this story has not supplied a scenario; call \$story->setScenario() in your test."];
530
+            return ["this story has not supplied a scenario; call \$story->setScenario() in your test."];
531 531
         }
532 532
 
533 533
         return $this->storyScenario;
@@ -682,18 +682,18 @@  discard block
 block discarded – undo
682 682
         // tell the template which story it is being used with
683 683
         $tmpl->setStory($this);
684 684
 
685
-        $tmpl->hasTestCanRunCheck()         && $this->addTestCanRunCheck($tmpl->getTestCanRunCheck());
686
-        $tmpl->hasTestSetup()               && $this->addTestSetup($tmpl->getTestSetup());
687
-        $tmpl->hasTestTeardown()            && $this->addTestTeardown($tmpl->getTestTeardown());
688
-        $tmpl->hasPerPhaseSetup()           && $this->addPerPhaseSetup($tmpl->getPerPhaseSetup());
689
-        $tmpl->hasPerPhaseTeardown()        && $this->addPerPhaseTeardown($tmpl->getPerPhaseTeardown());
690
-        $tmpl->hasDeviceSetup()             && $this->addDeviceSetup($tmpl->getDeviceSetup());
691
-        $tmpl->hasDeviceTeardown()          && $this->addDeviceTeardown($tmpl->getDeviceTeardown());
692
-        $tmpl->hasHints()                   && $this->addHints($tmpl->getHints());
693
-        $tmpl->hasPreTestPrediction()       && $this->addPreTestPrediction($tmpl->getPreTestPrediction());
694
-        $tmpl->hasPreTestInspection()       && $this->addPreTestInspection($tmpl->getPreTestInspection());
695
-        $tmpl->hasAction()                  && $this->addAction($tmpl->getAction());
696
-        $tmpl->hasPostTestInspection()      && $this->addPostTestInspection($tmpl->getPostTestInspection());
685
+        $tmpl->hasTestCanRunCheck() && $this->addTestCanRunCheck($tmpl->getTestCanRunCheck());
686
+        $tmpl->hasTestSetup() && $this->addTestSetup($tmpl->getTestSetup());
687
+        $tmpl->hasTestTeardown() && $this->addTestTeardown($tmpl->getTestTeardown());
688
+        $tmpl->hasPerPhaseSetup() && $this->addPerPhaseSetup($tmpl->getPerPhaseSetup());
689
+        $tmpl->hasPerPhaseTeardown() && $this->addPerPhaseTeardown($tmpl->getPerPhaseTeardown());
690
+        $tmpl->hasDeviceSetup() && $this->addDeviceSetup($tmpl->getDeviceSetup());
691
+        $tmpl->hasDeviceTeardown() && $this->addDeviceTeardown($tmpl->getDeviceTeardown());
692
+        $tmpl->hasHints() && $this->addHints($tmpl->getHints());
693
+        $tmpl->hasPreTestPrediction() && $this->addPreTestPrediction($tmpl->getPreTestPrediction());
694
+        $tmpl->hasPreTestInspection() && $this->addPreTestInspection($tmpl->getPreTestInspection());
695
+        $tmpl->hasAction() && $this->addAction($tmpl->getAction());
696
+        $tmpl->hasPostTestInspection() && $this->addPostTestInspection($tmpl->getPostTestInspection());
697 697
 
698 698
         // remember this template for future use
699 699
         $this->storyTemplates[] = $tmpl;
Please login to merge, or discard this patch.