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 — master ( 6cc8bd...f0d9c0 )
by Stuart
17:18 queued 08:04
created
src/php/DataSift/Storyplayer/DeviceLib/E5xx/CannotStartDevice.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
  */
58 58
 class E4xx_StoryShouldFail extends Exxx_Exception
59 59
 {
60
-    public function __construct() {
60
+    public function __construct()
61
+    {
61 62
         $msg = "Story should fail";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/DeviceLib/E5xx/NoHttpBasicAuthSupport.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
  */
58 58
 class E4xx_StoryShouldFail extends Exxx_Exception
59 59
 {
60
-    public function __construct() {
60
+    public function __construct()
61
+    {
61 62
         $msg = "Story should fail";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/DeviceLib/LocalWebDriverAdapter.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -104,15 +104,13 @@
 block discarded – undo
104 104
     public function stop()
105 105
     {
106 106
         // stop the web browser
107
-        if (is_object($this->browserSession))
108
-        {
107
+        if (is_object($this->browserSession)) {
109 108
             $this->browserSession->close();
110 109
             $this->browserSession = null;
111 110
         }
112 111
 
113 112
         // now stop the proxy
114
-        if (is_object($this->proxySession))
115
-        {
113
+        if (is_object($this->proxySession)) {
116 114
             try {
117 115
                 $this->proxySession->close();
118 116
             }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/HostLib/Blackboxes.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         if (empty($groupDef->details->machines)) {
100 100
             throw new E5xx_ActionFailed(__METHOD__, "groupDef->details->machines cannot be empty");
101 101
         }
102
-        foreach($groupDef->details->machines as $hostId => $machine) {
102
+        foreach ($groupDef->details->machines as $hostId => $machine) {
103 103
             // TODO: it would be great to autodetect this one day
104 104
             if (!isset($machine->roles)) {
105 105
                 throw new E5xx_ActionFailed(__METHOD__, "missing groupDef->details->machines['$hostId']->roles");
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         // if it is not, that is NOT our responsibility
124 124
 
125 125
         // store the details
126
-        foreach($groupDef->details->machines as $hostId => $machine)
126
+        foreach ($groupDef->details->machines as $hostId => $machine)
127 127
         {
128 128
             // we want all the details from the config file
129 129
             $vmDetails = clone $machine;
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -123,8 +123,7 @@  discard block
 block discarded – undo
123 123
         // if it is not, that is NOT our responsibility
124 124
 
125 125
         // store the details
126
-        foreach($groupDef->details->machines as $hostId => $machine)
127
-        {
126
+        foreach($groupDef->details->machines as $hostId => $machine) {
128 127
             // we want all the details from the config file
129 128
             $vmDetails = clone $machine;
130 129
 
@@ -205,8 +204,7 @@  discard block
 block discarded – undo
205 204
         $log = usingLog()->startAction("de-register blackbox(es)");
206 205
 
207 206
         // de-register all the hosts
208
-        foreach ($groupDef->details->machines as $hostId => $machine)
209
-        {
207
+        foreach ($groupDef->details->machines as $hostId => $machine) {
210 208
             foreach ($machine->roles as $role) {
211 209
                 usingRolesTable()->removeHostFromAllRoles($hostId);
212 210
             }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/OutputLib/E4xx/CannotOpenOutputFile.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,8 @@
 block discarded – undo
58 58
  */
59 59
 class E4xx_OutputFilenameIsAReservedName extends Exxx_Exception
60 60
 {
61
-    public function __construct($filename) {
61
+    public function __construct($filename)
62
+    {
62 63
         $msg = "'{$filename}' is reserved for internal use; please use a different filename";
63 64
         parent::__construct(400, $msg, $msg);
64 65
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/Phases/ShutdownHandlersPhase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     public function doPhase($phaseResults)
65 65
     {
66 66
         // shorthand
67
-        $st      = $this->st;
67
+        $st = $this->st;
68 68
 
69 69
         // our result object
70 70
         $phaseResult = $this->getNewPhaseResult();
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/PlayerLib/E5xx/CheckpointIsReadOnly.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
  */
58 58
 class E4xx_StoryShouldFail extends Exxx_Exception
59 59
 {
60
-    public function __construct() {
60
+    public function __construct()
61
+    {
61 62
         $msg = "Story should fail";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/PlayerLib/E5xx/NoRemoteWebDriverConfig.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
  */
58 58
 class E4xx_StoryShouldFail extends Exxx_Exception
59 59
 {
60
-    public function __construct() {
60
+    public function __construct()
61
+    {
61 62
         $msg = "Story should fail";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/PlayerLib/E5xx/NoRemoteWebDriverUrl.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,8 @@
 block discarded – undo
57 57
  */
58 58
 class E4xx_StoryShouldFail extends Exxx_Exception
59 59
 {
60
-    public function __construct() {
60
+    public function __construct()
61
+    {
61 62
         $msg = "Story should fail";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.