Completed
Push — 3.0 ( 3f4f52...2a6107 )
by Vermeulen
01:43
created
src/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/Install/ModuleInstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -521,7 +521,7 @@
 block discarded – undo
521 521
      */
522 522
     protected function removeRecursiveDirectory(string $dirPath): bool
523 523
     {
524
-        $fileList = array_diff(scandir($dirPath), ['.','..']);
524
+        $fileList = array_diff(scandir($dirPath), ['.', '..']);
525 525
         
526 526
         foreach ($fileList as $filePath) {
527 527
             if (is_dir($filePath)) {
Please login to merge, or discard this patch.