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
php/DataSift/Storyplayer/Injectables/RunningTestEnvironmentsListSupport.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -63,9 +63,9 @@
 block discarded – undo
63 63
 {
64 64
     public $runningTestEnvironmentsList;
65 65
 
66
-	public function initRunningTestEnvironmentsListSupport()
67
-	{
66
+    public function initRunningTestEnvironmentsListSupport()
67
+    {
68 68
         $this->runningTestEnvironmentsList = new RunningTestEnvironmentsList();
69 69
         $this->runningTestEnvironmentsList->findConfigs();
70
-	}
70
+    }
71 71
 }
Please login to merge, or discard this patch.
src/php/Prose/FromArray.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
  * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
56 56
  * @link      http://datasift.github.io/storyplayer
57 57
  */
58
-class FromArray extends Prose{
58
+class FromArray extends Prose {
59 59
 
60 60
     /**
61 61
      * Sets a value in an array for a . delimited path
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     public function setValueInArray(&$array, $path, $val)
69 69
     {
70 70
         $pathAsArray = fromString()->splitDotSeparatedPath($path);
71
-        for ($i=&$array; $key=array_shift($pathAsArray); $i=&$i[$key]) {
71
+        for ($i = &$array; $key = array_shift($pathAsArray); $i = &$i[$key]) {
72 72
             if (!isset($i[$key])) {
73 73
                 $i[$key] = array();
74 74
             }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
  * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
56 56
  * @link      http://datasift.github.io/storyplayer
57 57
  */
58
-class FromArray extends Prose{
58
+class FromArray extends Prose
59
+{
59 60
 
60 61
     /**
61 62
      * Sets a value in an array for a . delimited path
Please login to merge, or discard this patch.
src/php/Prose/FromString.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
  * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
56 56
  * @link      http://datasift.github.io/storyplayer
57 57
  */
58
-class FromString extends Prose{
58
+class FromString extends Prose {
59 59
 
60 60
     /**
61 61
      * Reduces a dot separated path e.g. fb.parent.context by one from
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@  discard block
 block discarded – undo
55 55
  * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
56 56
  * @link      http://datasift.github.io/storyplayer
57 57
  */
58
-class FromString extends Prose{
58
+class FromString extends Prose
59
+{
59 60
 
60 61
     /**
61 62
      * Reduces a dot separated path e.g. fb.parent.context by one from
@@ -71,9 +72,11 @@  discard block
 block discarded – undo
71 72
         $parts = $this->splitDotSeparatedPath($pathToReduce);
72 73
         if (count($parts) == 0) {
73 74
             return null;
74
-        } else if (count($parts) == 1) {
75
+        }
76
+        else if (count($parts) == 1) {
75 77
             return $parts[0];
76
-        } else {
78
+        }
79
+        else {
77 80
             array_pop($parts);
78 81
             return implode('.', $parts);
79 82
         }
Please login to merge, or discard this patch.
src/php/Prose/UsingTargetsTable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         $log = usingLog()->startAction("add current test environment to targets table");
73 73
 
74 74
         // get the details to add
75
-        $testEnvSig  = $this->st->getTestEnvironmentSignature();
75
+        $testEnvSig = $this->st->getTestEnvironmentSignature();
76 76
 
77 77
         // add it
78 78
         usingRuntimeTable($this->entryKey)->addItem(FromTargetsTable::SIGNATURE_KEY, $testEnvSig);
Please login to merge, or discard this patch.
storyplayer/test-environments/vagrant-vbox-centos7-empty/main.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 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);
12
+        ->setOperatingSystem(new CentOS_7_HostAdapter);
13 13
 
14 14
 $testEnv->setModuleSettings((object)[
15 15
     "http" => (object)[
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Asserts.php 1 patch
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      *
74 74
      * @param  array $actual
75 75
      *         the array to be tested
76
-     * @return \Prose\AssertsArray
76
+     * @return AssertsArray
77 77
      */
78 78
     public static function assertsArray($actual)
79 79
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      *
86 86
      * @param  boolean $actual
87 87
      *         the data to be tested
88
-     * @return \Prose\AssertsBoolean
88
+     * @return AssertsBoolean
89 89
      */
90 90
     public static function assertsBoolean($actual)
91 91
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      *
98 98
      * @param  double $actual
99 99
      *         the data to be tested
100
-     * @return \Prose\AssertsDouble
100
+     * @return AssertsDouble
101 101
      */
102 102
     public static function assertsDouble($actual)
103 103
     {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @param  int $actual
111 111
      *         the data to be tested
112
-     * @return \Prose\AssertsInteger
112
+     * @return AssertsInteger
113 113
      */
114 114
     public static function assertsInteger($actual)
115 115
     {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      *
122 122
      * @param  object $actual
123 123
      *         the data to be tested
124
-     * @return \Prose\AssertsObject
124
+     * @return AssertsObject
125 125
      */
126 126
     public static function assertsObject($actual)
127 127
     {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      *
134 134
      * @param  string $actual
135 135
      *         the data to be tested
136
-     * @return \Prose\AssertsString
136
+     * @return AssertsString
137 137
      */
138 138
     public static function assertsString($actual)
139 139
     {
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Stories/BuildStory.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,6 @@
 block discarded – undo
50 50
     /**
51 51
      * Create a new story object
52 52
      *
53
-     * @param  string $category the category that the story belongs to
54 53
      * @return Story            the new story object to use
55 54
      */
56 55
     public static function newStory()
Please login to merge, or discard this patch.