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 ( 9cdac9...91f3a9 )
by Stuart
06:15
created
src/php/Storyplayer/SPv2/Modules/Browser/DomElementSearch.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -245,8 +245,7 @@  discard block
 block discarded – undo
245 245
 
246 246
         // search all of the label elements to find an associated input
247 247
         // element that we can safely use
248
-        foreach ($labelElements as $labelElement)
249
-        {
248
+        foreach ($labelElements as $labelElement) {
250 249
             try {
251 250
                 // add each element that matches this label
252 251
                 $retval[] = $this->getElementAssociatedWithLabelElement($labelElement, $labelText);
@@ -289,8 +288,7 @@  discard block
 block discarded – undo
289 288
         }
290 289
 
291 290
         // what do we do next?
292
-        if ($inputElementId !== null)
293
-        {
291
+        if ($inputElementId !== null) {
294 292
             // where does the 'for' attribute go?
295 293
             try {
296 294
                 $inputElement = $log->addStep("find the input element with the id '{$inputElementId}'", function() use($topElement, $inputElementId) {
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/ExpectsBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             $log = usingLog()->startAction("$elementDesc '$elementName' must exist");
122 122
 
123 123
             $actualCount = count($elements);
124
-            switch($requiredCount) {
124
+            switch ($requiredCount) {
125 125
                 // this satisfies something like:
126 126
                 //
127 127
                 // expectsBrowser()->has()->fieldWithId('XX');
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/FromBrowser.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
             $log = usingLog()->startAction("retrieve the value of the $elementDesc '$elementName'");
273 273
 
274 274
             // is this a select box?
275
-            switch($element->name()) {
275
+            switch ($element->name()) {
276 276
                 case 'select':
277 277
                     // get the option that is selected
278 278
                     try {
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -350,8 +350,7 @@  discard block
 block discarded – undo
350 350
             // all done
351 351
             return $credentials;
352 352
         }
353
-        catch (Exception $e)
354
-        {
353
+        catch (Exception $e) {
355 354
             return null;
356 355
         }
357 356
     }
@@ -370,8 +369,7 @@  discard block
 block discarded – undo
370 369
             // get the details
371 370
             return $adapter->hasHttpBasicAuthForHost($hostname);
372 371
         }
373
-        catch (Exception $e)
374
-        {
372
+        catch (Exception $e) {
375 373
             return false;
376 374
         }
377 375
     }
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/MultiElementAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
         $words = $this->convertMethodNameToWords($methodName);
88 88
 
89 89
         // how many elements are we searching for?
90
-        $countType  = $this->determineCountType($words);
90
+        $countType = $this->determineCountType($words);
91 91
 
92 92
         // get the elements we need
93 93
         $elements = $this->retrieveElements($methodName, $methodArgs);
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/FromForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         }
78 78
 
79 79
         // yes, it really is a form
80
-        $this->formId      = $formId;
80
+        $this->formId = $formId;
81 81
         $this->setTopElement($formElement);
82 82
     }
83 83
 
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/UsingForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         }
78 78
 
79 79
         // yes, it really is a form
80
-        $this->formId      = $formId;
80
+        $this->formId = $formId;
81 81
         $this->setTopElement($formElement);
82 82
     }
83 83
 
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv2/Modules/Browser/ExpectsForm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
         }
78 78
 
79 79
         // yes, it really is a form
80
-        $this->formId      = $formId;
80
+        $this->formId = $formId;
81 81
         $this->setTopElement($formElement);
82 82
     }
83 83
 
Please login to merge, or discard this patch.