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 ( b6562d...080777 )
by Stuart
08:15
created
storyplayer/test-environments/vagrant-vbox-centos-6.7/main.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
 
10 10
 $group1 = $testEnv->newGroup('vagrant', new Vagrant_GroupAdapter);
11 11
 $group1->newHost('default', new Vagrant_VirtualboxHostAdapter)
12
-       ->setOperatingSystem(new CentOS_6_HostAdapter)
13
-       ->setRoles([
12
+        ->setOperatingSystem(new CentOS_6_HostAdapter)
13
+        ->setRoles([
14 14
             "host_target",
15 15
             "upload_target",
16 16
             "ssl_target",
17 17
             "zmq_target",
18 18
         ])
19
-       ->setStorySettings((object)[
19
+        ->setStorySettings((object)[
20 20
             "host" => (object)[
21 21
                 "expected" => "successfully retrieved this storySetting :)",
22 22
             ],
Please login to merge, or discard this patch.
storyplayer/test-environments/vagrant-vbox-centos-7.1/main.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
 
10 10
 $group1 = $testEnv->newGroup('vagrant', new Vagrant_GroupAdapter);
11 11
 $group1->newHost('default', new Vagrant_VirtualboxHostAdapter)
12
-       ->setOperatingSystem(new CentOS_7_HostAdapter)
13
-       ->setRoles([
12
+        ->setOperatingSystem(new CentOS_7_HostAdapter)
13
+        ->setRoles([
14 14
             "host_target",
15 15
             "upload_target",
16 16
             "ssl_target",
17 17
             "zmq_target",
18 18
         ])
19
-       ->setStorySettings((object)[
19
+        ->setStorySettings((object)[
20 20
             "host" => (object)[
21 21
                 "expected" => "successfully retrieved this storySetting :)",
22 22
             ],
Please login to merge, or discard this patch.
vagrant-vbox-ubuntu-14.04-server/files/zmq/zmq-echo-server.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -20,24 +20,24 @@
 block discarded – undo
20 20
 
21 21
 $events = 0;
22 22
 while(true) {
23
-	try {
24
-		$readable = $writeable = [];
25
-		$events = $poller->poll($readable, $writeable, -1);
26
-	}
27
-	catch (Exception $e) {
28
-		// do nothing
29
-	}
23
+    try {
24
+        $readable = $writeable = [];
25
+        $events = $poller->poll($readable, $writeable, -1);
26
+    }
27
+    catch (Exception $e) {
28
+        // do nothing
29
+    }
30 30
 
31
-	if ($events > 0) {
32
-		foreach($readable as $r) {
33
-			if ($r === $single['in']) {
34
-				$msg = $r->recv();
35
-				$single['out']->send($msg);
36
-			}
37
-			else {
38
-				$msg = $r->recvmulti();
39
-				$multi['out']->sendmulti($msg);
40
-			}
41
-		}
42
-	}
31
+    if ($events > 0) {
32
+        foreach($readable as $r) {
33
+            if ($r === $single['in']) {
34
+                $msg = $r->recv();
35
+                $single['out']->send($msg);
36
+            }
37
+            else {
38
+                $msg = $r->recvmulti();
39
+                $multi['out']->sendmulti($msg);
40
+            }
41
+        }
42
+    }
43 43
 }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 $single  = array();
6 6
 $single['in']  = $context->getSocket(ZMQ::SOCKET_PULL);
7 7
 $single['out'] = $context->getSocket(ZMQ::SOCKET_PUSH);
8
-$multi  = array();
8
+$multi = array();
9 9
 $multi['in']  = $context->getSocket(ZMQ::SOCKET_PULL);
10 10
 $multi['out'] = $context->getSocket(ZMQ::SOCKET_PUSH);
11 11
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 $poller->add($multi['in'], ZMQ::POLL_IN);
20 20
 
21 21
 $events = 0;
22
-while(true) {
22
+while (true) {
23 23
 	try {
24 24
 		$readable = $writeable = [];
25 25
 		$events = $poller->poll($readable, $writeable, -1);
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	}
30 30
 
31 31
 	if ($events > 0) {
32
-		foreach($readable as $r) {
32
+		foreach ($readable as $r) {
33 33
 			if ($r === $single['in']) {
34 34
 				$msg = $r->recv();
35 35
 				$single['out']->send($msg);
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/Cli/RuntimeConfigManager.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
      * a separate config file for each test environment. The original
135 135
      * runtime-v2.json file is then deleted from disk.
136 136
      *
137
-     * @param  BaseObject $config
137
+     * @param BaseObject $oldConfig
138 138
      * @return void
139 139
      */
140 140
     protected function splitUpConfig($oldConfig)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
         }
146 146
 
147 147
         // yes we do
148
-        foreach($oldConfig->storyplayer->tables->hosts as $testEnvName => $hosts) {
148
+        foreach ($oldConfig->storyplayer->tables->hosts as $testEnvName => $hosts) {
149 149
             // our new per-test-env config file
150 150
             $newConfig = new TestEnvironmentRuntimeConfig();
151 151
             $newConfig->setName($testEnvName);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,7 @@
 block discarded – undo
70 70
         static $configDir = null;
71 71
 
72 72
         // do we have a configDir remembered yet?
73
-        if (!$configDir)
74
-        {
73
+        if (!$configDir) {
75 74
             $configDir = getcwd() . '/.storyplayer';
76 75
         }
77 76
 
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/Cli/ListSystems/Switch.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     {
97 97
         // list the systems-under-test (if any) in a machine-friendly way
98 98
         foreach ($this->sutList->getEntries() as $sutName) {
99
-            echo $sutName->getName().PHP_EOL;
99
+            echo $sutName->getName() . PHP_EOL;
100 100
         }
101 101
 
102 102
         // all done
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/ConfigLib/DevicesList.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,11 +61,11 @@
 block discarded – undo
61 61
     public function __construct()
62 62
     {
63 63
         parent::__construct(
64
-        	'DataSift\Storyplayer\DeviceLib\DeviceConfig',
65
-        	[
66
-	        	"storyplayer/devices",
67
-	        	".storyplayer/devices",
68
-	        ],
64
+            'DataSift\Storyplayer\DeviceLib\DeviceConfig',
65
+            [
66
+                "storyplayer/devices",
67
+                ".storyplayer/devices",
68
+            ],
69 69
             [
70 70
                 new ConfigFinder(".*\\.json")
71 71
             ]
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/ConfigLib/RunningTestEnvironmentsList.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -66,10 +66,10 @@
 block discarded – undo
66 66
     public function __construct($searchFolder = 'storyplayer/test-environments')
67 67
     {
68 68
         parent::__construct(
69
-        	'DataSift\Storyplayer\TestEnvironmentsLib\TestEnvironmentRuntimeConfig',
70
-        	[
71
-        		"storyplayer/test-environments"
72
-        	],
69
+            'DataSift\Storyplayer\TestEnvironmentsLib\TestEnvironmentRuntimeConfig',
70
+            [
71
+                "storyplayer/test-environments"
72
+            ],
73 73
             [
74 74
                 new ConfigFinder("/runtime.json")
75 75
             ]
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/ConfigLib/SystemsUnderTestList.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,11 +61,11 @@
 block discarded – undo
61 61
     public function __construct()
62 62
     {
63 63
         return parent::__construct(
64
-        	'DataSift\Storyplayer\SystemsUnderTestLib\SystemUnderTestConfig',
65
-        	[
66
-	        	"storyplayer/systems-under-test",
67
-	        	".storyplayer/systems-under-test",
68
-	        ],
64
+            'DataSift\Storyplayer\SystemsUnderTestLib\SystemUnderTestConfig',
65
+            [
66
+                "storyplayer/systems-under-test",
67
+                ".storyplayer/systems-under-test",
68
+            ],
69 69
             [
70 70
                 new ConfigFinder(".*\\.json")
71 71
             ]
Please login to merge, or discard this patch.
src/php/DataSift/Storyplayer/ConfigLib/TestEnvironmentsList.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@
 block discarded – undo
58 58
     public function __construct($searchFolder = '.storyplayer/test-environments')
59 59
     {
60 60
         parent::__construct(
61
-        	'DataSift\Storyplayer\TestEnvironmentsLib\TestEnvironmentConfig',
62
-        	[
63
-        		"storyplayer/test-environments",
64
-        		".storyplayer/test-environments"
65
-        	],
61
+            'DataSift\Storyplayer\TestEnvironmentsLib\TestEnvironmentConfig',
62
+            [
63
+                "storyplayer/test-environments",
64
+                ".storyplayer/test-environments"
65
+            ],
66 66
             [
67 67
                 new ConfigFinder(".*(?<!runtime)\\.json$"),
68 68
                 new ConfigFinder("main.php$")
Please login to merge, or discard this patch.