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 ( a07628...6a1128 )
by François
04:21
created
src/fkooman/VPN/Server/Config/FileConfigStorage.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -58,6 +58,7 @@  discard block
 block discarded – undo
58 58
     /**
59 59
      * Get the configuration for a particular common name.
60 60
      *
61
+     * @param string $commonName
61 62
      * @return CommonNameConfig
62 63
      */
63 64
     public function getCommonNameConfig($commonName)
@@ -95,6 +96,9 @@  discard block
 block discarded – undo
95 96
         );
96 97
     }
97 98
 
99
+    /**
100
+     * @param string $fileName
101
+     */
98 102
     private function readFile($fileName)
99 103
     {
100 104
         if (false === $fileContent = @file_get_contents($fileName)) {
@@ -104,6 +108,9 @@  discard block
 block discarded – undo
104 108
         return Json::decode($fileContent);
105 109
     }
106 110
 
111
+    /**
112
+     * @param string $fileName
113
+     */
107 114
     private function writeFile($fileName, array $fileContent)
108 115
     {
109 116
         if (false === @file_put_contents($fileName, Json::encode($fileContent))) {
Please login to merge, or discard this patch.