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 — 3.0 ( fea5eb...c29f0e )
by Vermeulen
02:17
created
src/class/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
          * End "en" (preference 0.4/1)
200 200
          **/
201 201
         
202
-        $acceptLanguage  = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
202
+        $acceptLanguage = $this->serverValue('HTTP_ACCEPT_LANGUAGE');
203 203
         if (empty($acceptLanguage)) {
204 204
             $this->lang = '';
205 205
             return;
Please login to merge, or discard this patch.
src/class/install/ModuleInstall.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -505,7 +505,7 @@
 block discarded – undo
505 505
      */
506 506
     protected function removeRecursiveDirectory($dirPath)
507 507
     {
508
-        $fileList = array_diff(scandir($dirPath), ['.','..']);
508
+        $fileList = array_diff(scandir($dirPath), ['.', '..']);
509 509
         
510 510
         foreach ($fileList as $filePath) {
511 511
             if (is_dir($filePath)) {
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@
 block discarded – undo
153 153
     /**
154 154
      * Get accessor to the install script file or list
155 155
      * 
156
-     * @return string|array
156
+     * @return string|boolean
157 157
      */
158 158
     public function getSourceInstallScript()
159 159
     {
Please login to merge, or discard this patch.
skel/app/config/bfw/monolog.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
                 Logger::DEBUG
21 21
             ]
22 22
         ]
23
-        */
23
+         */
24 24
     ]
25 25
 ];
Please login to merge, or discard this patch.
src/class/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
      * 
181 181
      * @param array $options Options passed to application
182 182
      * 
183
-     * @return void
183
+     * @return Application
184 184
      */
185 185
     public function initSystems($options)
186 186
     {
Please login to merge, or discard this patch.
src/class/core/appSystems/CtrlRouterLink.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     /**
64 64
      * List all tasks runned by ctrlRouterLink
65 65
      * 
66
-     * @return array
66
+     * @return \stdClass[]
67 67
      */
68 68
     protected function obtainCtrlRouterLinkTasks()
69 69
     {
Please login to merge, or discard this patch.
src/class/install/core/appSystems/ModuleInstall.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     /**
26 26
      * Getter accessor to property listToInstall
27 27
      * 
28
-     * @return type
28
+     * @return \BFW\Install\ModuleInstall[]
29 29
      */
30 30
     public function getListToInstall()
31 31
     {
Please login to merge, or discard this patch.
src/helpers/Secure.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     /**
73 73
      * Securise a variable
74 74
      * 
75
-     * @param mixed $data The variable to securise
75
+     * @param string $data The variable to securise
76 76
      * @param string $type The type of datas
77 77
      * @param boolean $htmlentities If use htmlentities function
78 78
      *  to a better security
Please login to merge, or discard this patch.