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 ( 747411...dcc06d )
by Francis
02:56
created
src/Controllers/AppController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             
48 48
             $this->outputSummary($purgeManager->getPurgeResults());
49 49
         } 
50
-        catch ( \Exception $e ) {
50
+        catch (\Exception $e) {
51 51
             
52 52
             $type = get_class($e);
53 53
             $this->output->writeln('');
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         
80 80
         $this->output->writeln(' [<info>OK</info>]'); 
81 81
         
82
-        $this->html = [ $this->input->getArgument('html') ];
82
+        $this->html = [$this->input->getArgument('html')];
83 83
     }
84 84
     
85 85
     
Please login to merge, or discard this patch.
src/PurgeHtmlCrawler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         try {
32 32
     
33 33
             $xPath = CssSelector::toXPath($selector);
34
-            $xPath = '(' . $xPath . ')[1]';
34
+            $xPath = '('.$xPath.')[1]';
35 35
         
36 36
             return $this->filterXPath($xPath);
37 37
         }
Please login to merge, or discard this patch.
src/BlockHashTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
         foreach ($css->getAllDeclarationBlocks() as $block) {
41 41
             $hash = $this->hashBlock($block);
42 42
             
43
-            $this->hashTable[$hash] = [ self::BLOCK_VALUE => $block, self::IS_USED => false ];
43
+            $this->hashTable[$hash] = [self::BLOCK_VALUE => $block, self::IS_USED => false];
44 44
         }
45 45
     }
46 46
     
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         
122 122
         $hash = $this->hashBlock($block);
123 123
         
124
-        $this->hashTable[$hash] = [ self::BLOCK_VALUE => $block, self::IS_USED => $value ];
124
+        $this->hashTable[$hash] = [self::BLOCK_VALUE => $block, self::IS_USED => $value];
125 125
     }
126 126
     
127 127
     
Please login to merge, or discard this patch.