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
Branch master (64a210)
by Stan
04:06
created
botmother.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 
45 45
 
46
-            call_user_func_array([$this, $method], ['1','2','3']);
46
+            call_user_func_array([$this, $method], ['1', '2', '3']);
47 47
         } catch (Fatal $e) {
48 48
             echo $e->getMessage();
49 49
             exit;
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     {
83 83
         echo "\nCreating a new bot.\n";
84 84
 
85
-        echo $botName." - ".$token." - ".$dir;
85
+        echo $botName . " - " . $token . " - " . $dir;
86 86
     }
87 87
 }
88 88
 
Please login to merge, or discard this patch.
src/Method/AbstractMethod.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
     {
62 62
         foreach ($this->supportedProperties as $property => $isRequired) {
63 63
             if ($isRequired === true && empty($args[$property])) {
64
-                throw new Fatal('Required property "'.$property.'" is not set!');
64
+                throw new Fatal('Required property "' . $property . '" is not set!');
65 65
             }
66 66
         }
67 67
     }
Please login to merge, or discard this patch.
src/Command/Executor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     protected function getCommandClass($command)
108 108
     {
109 109
         $parts = explode(static::COMMAND_PARTS_DELIMITER, $command);
110
-        array_walk($parts, function (&$part) {
110
+        array_walk($parts, function(&$part) {
111 111
             $part = ucfirst($part);
112 112
         });
113 113
 
Please login to merge, or discard this patch.
src/Response.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
         $entity = null;
111 111
 
112 112
         if (!class_exists($entityClassName)) {
113
-            throw new Critical('Entity "'.$entityType.'" does not exists or not supported yet!');
113
+            throw new Critical('Entity "' . $entityType . '" does not exists or not supported yet!');
114 114
         }
115 115
         /** @var AbstractEntity $entity */
116 116
         $entity = new $entityClassName($rawItemData);
Please login to merge, or discard this patch.