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 ( eebeff...32119e )
by Freek
15:01 queued 12:14
created
src/Commands/ResolveCommand.php 2 patches
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.
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      * @param InputInterface  $input
38 38
      * @param OutputInterface $output
39 39
      *
40
-     * @return int|null|void
40
+     * @return boolean|null
41 41
      *
42 42
      * @throws Exception
43 43
      */
@@ -125,8 +125,8 @@  discard block
 block discarded – undo
125 125
      * Check if outputfile already exists,
126 126
      * if so, ask the user confirmation to overwrite.
127 127
      *
128
-     * @param $input
129
-     * @param $output
128
+     * @param InputInterface $input
129
+     * @param OutputInterface $output
130 130
      * @param $outputFile
131 131
      *
132 132
      * @return bool
Please login to merge, or discard this patch.
src/Certificate/Certificate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function hasParentInTrustChain()
51 51
     {
52
-        return ! $this->getParentCertificateURL() == '';
52
+        return !$this->getParentCertificateURL() == '';
53 53
     }
54 54
 
55 55
     /**
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         $x509 = new X509();
90 90
 
91
-        if (! $x509->loadX509($contents)) {
91
+        if (!$x509->loadX509($contents)) {
92 92
             throw new Exception('Invalid inputfile given.');
93 93
         }
94 94
     }
Please login to merge, or discard this patch.