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 ( cb7865...06cb05 )
by Rick
02:33
created
src/Failure.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     public function format()
53 53
     {
54
-        $replace = function ($matches) {
54
+        $replace = function($matches) {
55 55
             if (array_key_exists($matches[1], $this->parameters)) {
56 56
                 return $this->parameters[$matches[1]];
57 57
             }
Please login to merge, or discard this patch.
src/Rule/InArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     protected function getMessageParameters()
80 80
     {
81
-        $quote = function ($value) {
81
+        $quote = function($value) {
82 82
             return '"' . $value . '"';
83 83
         };
84 84
 
Please login to merge, or discard this patch.
src/Rule/Uuid.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
      * @var array
34 34
      */
35 35
     protected $regexes = [
36
-        4 => '~[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}~i',      // UUIDv4 Format
36
+        4 => '~[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}~i', // UUIDv4 Format
37 37
     ];
38 38
 
39 39
     /**
Please login to merge, or discard this patch.