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/Prose/CleanupRoles.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,14 +60,14 @@
 block discarded – undo
60 60
         // get the roles table, if we have one
61 61
         $rolesTable = $this->getTable();
62 62
         if (!$rolesTable) {
63
-        	return;
63
+            return;
64 64
         }
65 65
 
66 66
         // remove any empty test environments
67 67
         foreach ($rolesTable as $testEnv => $roles) {
68
-        	if (count(get_object_vars($roles)) == 0) {
69
-        		unset($rolesTable->$testEnv);
70
-        	}
68
+            if (count(get_object_vars($roles)) == 0) {
69
+                unset($rolesTable->$testEnv);
70
+            }
71 71
         }
72 72
 
73 73
         // cleanup the tables
Please login to merge, or discard this patch.
src/php/Prose/E4xx/InvalidArgument.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_InvalidArgument extends Exxx_Exception
59 59
 {
60
-    public function __construct($argumentName, $reason = '', $params = array()) {
60
+    public function __construct($argumentName, $reason = '', $params = array())
61
+    {
61 62
         $msg = "Missing argument '$argumentName'";
62 63
         if (strlen($reason) > 0) {
63 64
             $msg .= "; reason is '{$reason}'";
Please login to merge, or discard this patch.
src/php/Prose/E4xx/MissingArgument.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_MissingArgument extends Exxx_Exception
59 59
 {
60
-    public function __construct($method, $reason = '', $params = array()) {
60
+    public function __construct($method, $reason = '', $params = array())
61
+    {
61 62
         $msg = "Missing argument in '$method'";
62 63
         if (strlen($reason) > 0) {
63 64
             $msg .= "; reason is '{$reason}'";
Please login to merge, or discard this patch.
src/php/Prose/E4xx/ObsoleteProse.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_ObsoleteProse extends Exxx_Exception
59 59
 {
60
-    public function __construct($oldProse, $newProse) {
60
+    public function __construct($oldProse, $newProse)
61
+    {
61 62
         $msg = "Support for '$oldProse' has been removed; please use $newProse instead";
62 63
         parent::__construct(400, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/Prose/E4xx/StoryShouldFail.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/Prose/E5xx/ActionFailed.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
  */
56 56
 class E5xx_ActionFailed extends E5xx_ProseException
57 57
 {
58
-    public function __construct($actionName, $reason = '', $params = array()) {
58
+    public function __construct($actionName, $reason = '', $params = array())
59
+    {
59 60
         $msg = "Action '$actionName' failed";
60 61
         if (strlen($reason) > 0) {
61 62
             $msg .= "; reason is '{$reason}'";
Please login to merge, or discard this patch.
src/php/Prose/E5xx/ExpectFailed.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
  */
56 56
 class E5xx_ExpectFailed extends E5xx_ProseException
57 57
 {
58
-    public function __construct($actionName, $expected, $found) {
58
+    public function __construct($actionName, $expected, $found)
59
+    {
59 60
         $msg = "Action '$actionName' failed; expected '$expected', found '$found'";
60 61
         parent::__construct(500, $msg, $msg);
61 62
     }
Please login to merge, or discard this patch.
src/php/Prose/E5xx/NotImplemented.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 E5xx_NotImplemented extends E5xx_ProseException
59 59
 {
60
-    public function __construct($methodName) {
60
+    public function __construct($methodName)
61
+    {
61 62
         $msg = "Method '{$methodName}' has not been implemented yet";
62 63
         parent::__construct(500, $msg, $msg);
63 64
     }
Please login to merge, or discard this patch.
src/php/Prose/E5xx/UnknownDomElementType.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,8 @@
 block discarded – undo
55 55
  */
56 56
 class E5xx_UnknownDomElementType extends E5xx_ProseException
57 57
 {
58
-    public function __construct($elementType) {
58
+    public function __construct($elementType)
59
+    {
59 60
         $msg = "Unknown DOM element type '{$elementType}'";
60 61
         parent::__construct(500, $msg, $msg);
61 62
     }
Please login to merge, or discard this patch.