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 ( a01556...b8e8f2 )
by Freek
02:11
created
Category
src/Certificate/Certificate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
      */
49 49
     public function hasParentInTrustChain()
50 50
     {
51
-        return (! $this->getParentCertificateURL() == '');
51
+        return (!$this->getParentCertificateURL() == '');
52 52
     }
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
src/Commands/ResolveCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         if (file_exists($outputFile)) {
53 53
             $confirmation = $this->confirmOverwrite($input, $output, $outputFile);
54 54
 
55
-            if (! $confirmation) {
55
+            if (!$confirmation) {
56 56
                 $output->writeln("<info>Cancelling...</info>");
57 57
 
58 58
                 return true;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
      */
117 117
     protected function guardAgainstInvalidInput($certificateFile)
118 118
     {
119
-        if (! file_exists($certificateFile)) {
119
+        if (!file_exists($certificateFile)) {
120 120
             throw new Exception('Inputfile'.$certificateFile.' does not exists');
121 121
         }
122 122
     }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
         $helper = $this->getHelper('question');
139 139
         $question = new ConfirmationQuestion('<comment>Outputfile '.$outputFile.' already exists. Do you want to overwrite it? (y/n) </comment>', false);
140 140
 
141
-        if (! $helper->ask($input, $output, $question)) {
141
+        if (!$helper->ask($input, $output, $question)) {
142 142
             return false;
143 143
         }
144 144
 
Please login to merge, or discard this patch.