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
Pull Request — master (#6)
by Bernardo Vieira da
01:36
created
src/GitHooksInstallerPlugin/Composer/Installer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,17 +86,17 @@
 block discarded – undo
86 86
     {
87 87
         parent::install($repo, $package);
88 88
         foreach ($this->getSupportedHooks() as $gitHookName) {
89
-            $installedHookFilePath = $this->getInstallPath($package) . DIRECTORY_SEPARATOR . $gitHookName;
89
+            $installedHookFilePath = $this->getInstallPath($package).DIRECTORY_SEPARATOR.$gitHookName;
90 90
 
91 91
             if (file_exists($installedHookFilePath)) {
92
-                $hookDestinationPath = $this->getGitHooksPath() . DIRECTORY_SEPARATOR . $gitHookName;
92
+                $hookDestinationPath = $this->getGitHooksPath().DIRECTORY_SEPARATOR.$gitHookName;
93 93
                 copy($installedHookFilePath, $hookDestinationPath);
94 94
                 chmod($hookDestinationPath, 0755);
95 95
             }
96 96
         }
97 97
 
98 98
         // clean up temporary data
99
-        exec('rm -rf ' . $this->getHooksInstallationPath());
99
+        exec('rm -rf '.$this->getHooksInstallationPath());
100 100
     }
101 101
 
102 102
     /**
Please login to merge, or discard this patch.