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 — hotfix/2.3.4 ( 8fdf7c...fb6e65 )
by Stuart
08:35
created
src/php/DataSift/Storyplayer/PlayerLib/Story.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -622,18 +622,18 @@
 block discarded – undo
622 622
         // tell the template which story it is being used with
623 623
         $tmpl->setStory($this);
624 624
 
625
-        $tmpl->hasTestCanRunCheck()         && $this->addTestCanRunCheck($tmpl->getTestCanRunCheck());
626
-        $tmpl->hasTestSetup()               && $this->addTestSetup($tmpl->getTestSetup());
627
-        $tmpl->hasTestTeardown()            && $this->addTestTeardown($tmpl->getTestTeardown());
628
-        $tmpl->hasPerPhaseSetup()           && $this->addPerPhaseSetup($tmpl->getPerPhaseSetup());
629
-        $tmpl->hasPerPhaseTeardown()        && $this->addPerPhaseTeardown($tmpl->getPerPhaseTeardown());
630
-        $tmpl->hasDeviceSetup()             && $this->addDeviceSetup($tmpl->getDeviceSetup());
631
-        $tmpl->hasDeviceTeardown()          && $this->addDeviceTeardown($tmpl->getDeviceTeardown());
632
-        $tmpl->hasHints()                   && $this->addHints($tmpl->getHints());
633
-        $tmpl->hasPreTestPrediction()       && $this->addPreTestPrediction($tmpl->getPreTestPrediction());
634
-        $tmpl->hasPreTestInspection()       && $this->addPreTestInspection($tmpl->getPreTestInspection());
635
-        $tmpl->hasAction()                  && $this->addAction($tmpl->getAction());
636
-        $tmpl->hasPostTestInspection()      && $this->addPostTestInspection($tmpl->getPostTestInspection());
625
+        $tmpl->hasTestCanRunCheck() && $this->addTestCanRunCheck($tmpl->getTestCanRunCheck());
626
+        $tmpl->hasTestSetup() && $this->addTestSetup($tmpl->getTestSetup());
627
+        $tmpl->hasTestTeardown() && $this->addTestTeardown($tmpl->getTestTeardown());
628
+        $tmpl->hasPerPhaseSetup() && $this->addPerPhaseSetup($tmpl->getPerPhaseSetup());
629
+        $tmpl->hasPerPhaseTeardown() && $this->addPerPhaseTeardown($tmpl->getPerPhaseTeardown());
630
+        $tmpl->hasDeviceSetup() && $this->addDeviceSetup($tmpl->getDeviceSetup());
631
+        $tmpl->hasDeviceTeardown() && $this->addDeviceTeardown($tmpl->getDeviceTeardown());
632
+        $tmpl->hasHints() && $this->addHints($tmpl->getHints());
633
+        $tmpl->hasPreTestPrediction() && $this->addPreTestPrediction($tmpl->getPreTestPrediction());
634
+        $tmpl->hasPreTestInspection() && $this->addPreTestInspection($tmpl->getPreTestInspection());
635
+        $tmpl->hasAction() && $this->addAction($tmpl->getAction());
636
+        $tmpl->hasPostTestInspection() && $this->addPostTestInspection($tmpl->getPostTestInspection());
637 637
 
638 638
         // remember this template for future use
639 639
         $this->storyTemplates[] = $tmpl;
Please login to merge, or discard this patch.