Passed
Push — master ( 089fbf...f223f6 )
by Sebastian
04:05
created
src/FileHelper.php 1 patch
Spacing   +103 added lines, -103 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         
83 83
         $contents = file_get_contents($file);
84 84
         
85
-        if($contents === false) 
85
+        if ($contents === false) 
86 86
         {
87 87
             throw new FileHelper_Exception(
88 88
                 'Cannot load serialized content from file.',
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         
97 97
         $result = @unserialize($contents);
98 98
         
99
-        if($result !== false) {
99
+        if ($result !== false) {
100 100
             return $result;
101 101
         }
102 102
         
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     
113 113
     public static function deleteTree($rootFolder)
114 114
     {
115
-        if(!file_exists($rootFolder)) {
115
+        if (!file_exists($rootFolder)) {
116 116
             return true;
117 117
         }
118 118
         
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     */
154 154
     public static function createFolder($path)
155 155
     {
156
-        if(is_dir($path) || mkdir($path, 0777, true)) {
156
+        if (is_dir($path) || mkdir($path, 0777, true)) {
157 157
             return;
158 158
         }
159 159
         
@@ -188,11 +188,11 @@  discard block
 block discarded – undo
188 188
 
189 189
             if ($item->isDir()) 
190 190
             {
191
-                FileHelper::copyTree(str_replace('\\', '/', $itemPath), $target . '/' . $baseName);
191
+                FileHelper::copyTree(str_replace('\\', '/', $itemPath), $target.'/'.$baseName);
192 192
             } 
193
-            else if($item->isFile()) 
193
+            else if ($item->isFile()) 
194 194
             {
195
-                self::copyFile($itemPath, $target . '/' . $baseName);
195
+                self::copyFile($itemPath, $target.'/'.$baseName);
196 196
             }
197 197
         }
198 198
     }
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
     {
218 218
         self::requireFileExists($sourcePath, self::ERROR_SOURCE_FILE_NOT_FOUND);
219 219
         
220
-        if(!is_readable($sourcePath))
220
+        if (!is_readable($sourcePath))
221 221
         {
222 222
             throw new FileHelper_Exception(
223 223
                 sprintf('Source file [%s] to copy is not readable.', basename($sourcePath)),
@@ -231,11 +231,11 @@  discard block
 block discarded – undo
231 231
         
232 232
         $targetFolder = dirname($targetPath);
233 233
         
234
-        if(!file_exists($targetFolder))
234
+        if (!file_exists($targetFolder))
235 235
         {
236 236
             self::createFolder($targetFolder);
237 237
         }
238
-        else if(!is_writable($targetFolder)) 
238
+        else if (!is_writable($targetFolder)) 
239 239
         {
240 240
             throw new FileHelper_Exception(
241 241
                 sprintf('Target folder [%s] is not writable.', basename($targetFolder)),
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             );
248 248
         }
249 249
         
250
-        if(copy($sourcePath, $targetPath)) {
250
+        if (copy($sourcePath, $targetPath)) {
251 251
             return;
252 252
         }
253 253
         
@@ -274,11 +274,11 @@  discard block
 block discarded – undo
274 274
     */
275 275
     public static function deleteFile(string $filePath) : void
276 276
     {
277
-        if(!file_exists($filePath)) {
277
+        if (!file_exists($filePath)) {
278 278
             return;
279 279
         }
280 280
         
281
-        if(unlink($filePath)) {
281
+        if (unlink($filePath)) {
282 282
             return;
283 283
         }
284 284
         
@@ -302,10 +302,10 @@  discard block
 block discarded – undo
302 302
     * @return \parseCSV
303 303
     * @todo Move this to the CSV helper.
304 304
     */
305
-    public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : \parseCSV
305
+    public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : \parseCSV
306 306
     {
307
-        if($delimiter==='') { $delimiter = ';'; }
308
-        if($enclosure==='') { $enclosure = '"'; }
307
+        if ($delimiter === '') { $delimiter = ';'; }
308
+        if ($enclosure === '') { $enclosure = '"'; }
309 309
         
310 310
         $parser = new \parseCSV(null, null, null, array());
311 311
 
@@ -333,11 +333,11 @@  discard block
 block discarded – undo
333 333
     * @see parseCSVFile()
334 334
     * @see FileHelper::ERROR_PARSING_CSV
335 335
     */
336
-    public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
336
+    public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array
337 337
     {
338 338
         $parser = self::createCSVParser($delimiter, $enclosure, $escape, $heading);
339 339
         $result = $parser->parse_string(/** @scrutinizer ignore-type */ $csv);
340
-        if(is_array($result)) {
340
+        if (is_array($result)) {
341 341
             return $result;
342 342
         }
343 343
         
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
      * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
367 367
      * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
368 368
      */
369
-    public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
369
+    public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array
370 370
     {
371 371
         $content = self::readContents($filePath);
372 372
 
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
     public static function detectMimeType(string $fileName) : ?string
384 384
     {
385 385
         $ext = self::getExtension($fileName);
386
-        if(empty($ext)) {
386
+        if (empty($ext)) {
387 387
             return null;
388 388
         }
389 389
 
@@ -404,11 +404,11 @@  discard block
 block discarded – undo
404 404
      * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
405 405
      * @see FileHelper::ERROR_UNKNOWN_FILE_MIME_TYPE
406 406
      */
407
-    public static function sendFile(string $filePath, $fileName = null, bool $asAttachment=true)
407
+    public static function sendFile(string $filePath, $fileName = null, bool $asAttachment = true)
408 408
     {
409 409
         self::requireFileExists($filePath);
410 410
         
411
-        if(empty($fileName)) {
411
+        if (empty($fileName)) {
412 412
             $fileName = basename($filePath);
413 413
         }
414 414
 
@@ -426,10 +426,10 @@  discard block
 block discarded – undo
426 426
         
427 427
         header("Cache-Control: public", true);
428 428
         header("Content-Description: File Transfer", true);
429
-        header("Content-Type: " . $mime, true);
429
+        header("Content-Type: ".$mime, true);
430 430
 
431 431
         $disposition = 'inline';
432
-        if($asAttachment) {
432
+        if ($asAttachment) {
433 433
             $disposition = 'attachment';
434 434
         }
435 435
         
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
         requireCURL();
458 458
         
459 459
         $ch = curl_init();
460
-        if(!is_resource($ch)) 
460
+        if (!is_resource($ch)) 
461 461
         {
462 462
             throw new FileHelper_Exception(
463 463
                 'Could not initialize a new cURL instance.',
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
         
479 479
         $output = curl_exec($ch);
480 480
 
481
-        if($output === false) {
481
+        if ($output === false) {
482 482
             throw new FileHelper_Exception(
483 483
                 'Unable to open URL',
484 484
                 sprintf(
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
 
493 493
         curl_close($ch);
494 494
 
495
-        if(is_string($output)) 
495
+        if (is_string($output)) 
496 496
         {
497 497
             return $output;
498 498
         }
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
     */
515 515
     public static function isPHPFile($pathOrDirIterator)
516 516
     {
517
-    	if(self::getExtension($pathOrDirIterator) == 'php') {
517
+    	if (self::getExtension($pathOrDirIterator) == 'php') {
518 518
     		return true;
519 519
     	}
520 520
     	
@@ -531,14 +531,14 @@  discard block
 block discarded – undo
531 531
     */
532 532
     public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string
533 533
     {
534
-        if($pathOrDirIterator instanceof \DirectoryIterator) {
534
+        if ($pathOrDirIterator instanceof \DirectoryIterator) {
535 535
             $filename = $pathOrDirIterator->getFilename();
536 536
         } else {
537 537
             $filename = basename($pathOrDirIterator);
538 538
         }
539 539
          
540 540
         $ext = pathinfo($filename, PATHINFO_EXTENSION);
541
-        if($lowercase) {
541
+        if ($lowercase) {
542 542
         	$ext = mb_strtolower($ext);
543 543
         }
544 544
         
@@ -560,13 +560,13 @@  discard block
 block discarded – undo
560 560
     public static function getFilename($pathOrDirIterator, $extension = true)
561 561
     {
562 562
         $path = $pathOrDirIterator;
563
-    	if($pathOrDirIterator instanceof \DirectoryIterator) {
563
+    	if ($pathOrDirIterator instanceof \DirectoryIterator) {
564 564
     		$path = $pathOrDirIterator->getFilename();
565 565
     	}
566 566
     	
567 567
     	$path = self::normalizePath($path);
568 568
     	
569
-    	if(!$extension) {
569
+    	if (!$extension) {
570 570
     	    return pathinfo($path, PATHINFO_FILENAME);
571 571
     	}
572 572
     	
@@ -584,12 +584,12 @@  discard block
 block discarded – undo
584 584
     * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
585 585
     * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
586 586
     */ 
587
-    public static function parseJSONFile(string $file, $targetEncoding=null, $sourceEncoding=null)
587
+    public static function parseJSONFile(string $file, $targetEncoding = null, $sourceEncoding = null)
588 588
     {
589 589
         self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE);
590 590
         
591 591
         $content = file_get_contents($file);
592
-        if(!$content) {
592
+        if (!$content) {
593 593
             throw new FileHelper_Exception(
594 594
                 'Cannot get file contents',
595 595
                 sprintf(
@@ -600,12 +600,12 @@  discard block
 block discarded – undo
600 600
             );
601 601
         }
602 602
         
603
-        if(isset($targetEncoding)) {
603
+        if (isset($targetEncoding)) {
604 604
             $content = mb_convert_encoding($content, $targetEncoding, $sourceEncoding);
605 605
         }
606 606
         
607 607
         $json = json_decode($content, true);
608
-        if($json === false || $json === NULL) {
608
+        if ($json === false || $json === NULL) {
609 609
             throw new FileHelper_Exception(
610 610
                 'Cannot decode json data',
611 611
                 sprintf(
@@ -645,13 +645,13 @@  discard block
 block discarded – undo
645 645
         
646 646
         $name = str_replace(array_keys($replaces), array_values($replaces), $name);
647 647
         
648
-        while(strstr($name, '  ')) {
648
+        while (strstr($name, '  ')) {
649 649
             $name = str_replace('  ', ' ', $name);
650 650
         }
651 651
 
652 652
         $name = str_replace(array_keys($replaces), array_values($replaces), $name);
653 653
         
654
-        while(strstr($name, '..')) {
654
+        while (strstr($name, '..')) {
655 655
             $name = str_replace('..', '.', $name);
656 656
         }
657 657
         
@@ -683,7 +683,7 @@  discard block
 block discarded – undo
683 683
     * @return array An indexed array with files.
684 684
     * @see FileHelper::createFileFinder()
685 685
     */
686
-    public static function findHTMLFiles(string $targetFolder, array $options=array()) : array
686
+    public static function findHTMLFiles(string $targetFolder, array $options = array()) : array
687 687
     {
688 688
         return self::findFiles($targetFolder, array('html'), $options);
689 689
     }
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
     * @return array An indexed array of PHP files.
701 701
     * @see FileHelper::createFileFinder()
702 702
     */
703
-    public static function findPHPFiles(string $targetFolder, array $options=array()) : array
703
+    public static function findPHPFiles(string $targetFolder, array $options = array()) : array
704 704
     {
705 705
         return self::findFiles($targetFolder, array('php'), $options);
706 706
     }
@@ -720,22 +720,22 @@  discard block
 block discarded – undo
720 720
     * @return array
721 721
     * @see FileHelper::createFileFinder()
722 722
     */
723
-    public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array(), array $files=array()) : array
723
+    public static function findFiles(string $targetFolder, array $extensions = array(), array $options = array(), array $files = array()) : array
724 724
     {
725 725
         $finder = self::createFileFinder($targetFolder);
726 726
 
727 727
         $finder->setPathmodeStrip();
728 728
         
729
-        if(isset($options['relative-path']) && $options['relative-path'] === true) 
729
+        if (isset($options['relative-path']) && $options['relative-path'] === true) 
730 730
         {
731 731
             $finder->setPathmodeRelative();
732 732
         } 
733
-        else if(isset($options['absolute-path']) && $options['absolute-path'] === true)
733
+        else if (isset($options['absolute-path']) && $options['absolute-path'] === true)
734 734
         {
735 735
             $finder->setPathmodeAbsolute();
736 736
         }
737 737
         
738
-        if(isset($options['strip-extension'])) 
738
+        if (isset($options['strip-extension'])) 
739 739
         {
740 740
             $finder->stripExtensions();
741 741
         }
@@ -753,12 +753,12 @@  discard block
 block discarded – undo
753 753
     * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
754 754
     * @return string
755 755
     */
756
-    public static function removeExtension(string $filename, bool $keepPath=false) : string
756
+    public static function removeExtension(string $filename, bool $keepPath = false) : string
757 757
     {
758 758
         // normalize paths to allow windows style slashes even on nix servers
759 759
         $filename = self::normalizePath($filename);
760 760
         
761
-        if(!$keepPath) 
761
+        if (!$keepPath) 
762 762
         {
763 763
             return pathinfo($filename, PATHINFO_FILENAME);
764 764
         }
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
     public static function detectUTFBom(string $filename) : ?string
792 792
     {
793 793
         $fp = fopen($filename, 'r');
794
-        if($fp === false) 
794
+        if ($fp === false) 
795 795
         {
796 796
             throw new FileHelper_Exception(
797 797
                 'Cannot open file for reading',
@@ -806,10 +806,10 @@  discard block
 block discarded – undo
806 806
 
807 807
         $boms = self::getUTFBOMs();
808 808
         
809
-        foreach($boms as $bom => $value) 
809
+        foreach ($boms as $bom => $value) 
810 810
         {
811 811
             $length = mb_strlen($value);
812
-            if(mb_substr($text, 0, $length) == $value) {
812
+            if (mb_substr($text, 0, $length) == $value) {
813 813
                 return $bom;
814 814
             }
815 815
         }
@@ -828,13 +828,13 @@  discard block
 block discarded – undo
828 828
     */
829 829
     public static function getUTFBOMs()
830 830
     {
831
-        if(!isset(self::$utfBoms)) {
831
+        if (!isset(self::$utfBoms)) {
832 832
             self::$utfBoms = array(
833
-                'UTF32-BE' => chr(0x00) . chr(0x00) . chr(0xFE) . chr(0xFF),
834
-                'UTF32-LE' => chr(0xFF) . chr(0xFE) . chr(0x00) . chr(0x00),
835
-                'UTF16-BE' => chr(0xFE) . chr(0xFF),
836
-                'UTF16-LE' => chr(0xFF) . chr(0xFE),
837
-                'UTF8' => chr(0xEF) . chr(0xBB) . chr(0xBF)
833
+                'UTF32-BE' => chr(0x00).chr(0x00).chr(0xFE).chr(0xFF),
834
+                'UTF32-LE' => chr(0xFF).chr(0xFE).chr(0x00).chr(0x00),
835
+                'UTF16-BE' => chr(0xFE).chr(0xFF),
836
+                'UTF16-LE' => chr(0xFF).chr(0xFE),
837
+                'UTF8' => chr(0xEF).chr(0xBB).chr(0xBF)
838 838
             );
839 839
         }
840 840
         
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
         $encodings = self::getKnownUnicodeEncodings();
856 856
 
857 857
         $keep = array();
858
-        foreach($encodings as $string) 
858
+        foreach ($encodings as $string) 
859 859
         {
860 860
             $withHyphen = str_replace('UTF', 'UTF-', $string);
861 861
             
@@ -902,16 +902,16 @@  discard block
 block discarded – undo
902 902
     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
903 903
     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
904 904
     */
905
-    public static function saveAsJSON($data, string $file, bool $pretty=false)
905
+    public static function saveAsJSON($data, string $file, bool $pretty = false)
906 906
     {
907 907
         $options = null;
908
-        if($pretty) {
908
+        if ($pretty) {
909 909
             $options = JSON_PRETTY_PRINT;
910 910
         }
911 911
         
912 912
         $json = json_encode($data, $options);
913 913
         
914
-        if($json===false) 
914
+        if ($json === false) 
915 915
         {
916 916
             $errorCode = json_last_error();
917 917
             
@@ -937,14 +937,14 @@  discard block
 block discarded – undo
937 937
     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
938 938
     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
939 939
     */
940
-    public static function saveFile(string $filePath, string $content='') : void
940
+    public static function saveFile(string $filePath, string $content = '') : void
941 941
     {
942 942
         $filePath = self::normalizePath($filePath);
943 943
         
944 944
         // target file already exists
945
-        if(file_exists($filePath))
945
+        if (file_exists($filePath))
946 946
         {
947
-            if(!is_writable($filePath))
947
+            if (!is_writable($filePath))
948 948
             {
949 949
                 throw new FileHelper_Exception(
950 950
                     sprintf('Cannot save file: target file [%s] exists, but is not writable.', basename($filePath)),
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
             // create the folder as needed
965 965
             self::createFolder($targetFolder);
966 966
             
967
-            if(!is_writable($targetFolder)) 
967
+            if (!is_writable($targetFolder)) 
968 968
             {
969 969
                 throw new FileHelper_Exception(
970 970
                     sprintf('Cannot save file: target folder [%s] is not writable.', basename($targetFolder)),
@@ -977,7 +977,7 @@  discard block
 block discarded – undo
977 977
             }
978 978
         }
979 979
         
980
-        if(is_dir($filePath))
980
+        if (is_dir($filePath))
981 981
         {
982 982
             throw new FileHelper_Exception(
983 983
                 sprintf('Cannot save file: the target [%s] is a directory.', basename($filePath)),
@@ -989,7 +989,7 @@  discard block
 block discarded – undo
989 989
             );
990 990
         }
991 991
         
992
-        if(file_put_contents($filePath, $content) !== false) {
992
+        if (file_put_contents($filePath, $content) !== false) {
993 993
             return;
994 994
         }
995 995
         
@@ -1027,7 +1027,7 @@  discard block
 block discarded – undo
1027 1027
     {
1028 1028
         static $checked = array();
1029 1029
         
1030
-        if(isset($checked[$command])) {
1030
+        if (isset($checked[$command])) {
1031 1031
             return $checked[$command];
1032 1032
         }
1033 1033
         
@@ -1040,7 +1040,7 @@  discard block
 block discarded – undo
1040 1040
         
1041 1041
         $os = strtolower(PHP_OS_FAMILY);
1042 1042
         
1043
-        if(!isset($osCommands[$os])) 
1043
+        if (!isset($osCommands[$os])) 
1044 1044
         {
1045 1045
             throw new FileHelper_Exception(
1046 1046
                 'Unsupported OS for CLI commands',
@@ -1066,7 +1066,7 @@  discard block
 block discarded – undo
1066 1066
             $pipes
1067 1067
         );
1068 1068
         
1069
-        if($process === false) {
1069
+        if ($process === false) {
1070 1070
             $checked[$command] = false;
1071 1071
             return false;
1072 1072
         }
@@ -1097,7 +1097,7 @@  discard block
 block discarded – undo
1097 1097
     */
1098 1098
     public static function checkPHPFileSyntax($path)
1099 1099
     {
1100
-        if(!self::canMakePHPCalls()) {
1100
+        if (!self::canMakePHPCalls()) {
1101 1101
             return true;
1102 1102
         }
1103 1103
         
@@ -1108,7 +1108,7 @@  discard block
 block discarded – undo
1108 1108
         // when the validation is successful, the first entry
1109 1109
         // in the array contains the success message. When it
1110 1110
         // is invalid, the first entry is always empty.
1111
-        if(!empty($output[0])) {
1111
+        if (!empty($output[0])) {
1112 1112
             return true;
1113 1113
         }
1114 1114
         
@@ -1129,7 +1129,7 @@  discard block
 block discarded – undo
1129 1129
     public static function getModifiedDate($path)
1130 1130
     {
1131 1131
         $time = filemtime($path);
1132
-        if($time !== false) {
1132
+        if ($time !== false) {
1133 1133
             $date = new \DateTime();
1134 1134
             $date->setTimestamp($time);
1135 1135
             return $date;
@@ -1158,7 +1158,7 @@  discard block
 block discarded – undo
1158 1158
     */
1159 1159
     public static function getSubfolders($targetFolder, $options = array())
1160 1160
     {
1161
-        if(!is_dir($targetFolder)) 
1161
+        if (!is_dir($targetFolder)) 
1162 1162
         {
1163 1163
             throw new FileHelper_Exception(
1164 1164
                 'Target folder does not exist',
@@ -1182,29 +1182,29 @@  discard block
 block discarded – undo
1182 1182
         
1183 1183
         $d = new \DirectoryIterator($targetFolder);
1184 1184
         
1185
-        foreach($d as $item) 
1185
+        foreach ($d as $item) 
1186 1186
         {
1187
-            if($item->isDir() && !$item->isDot()) 
1187
+            if ($item->isDir() && !$item->isDot()) 
1188 1188
             {
1189 1189
                 $name = $item->getFilename();
1190 1190
                 
1191
-                if(!$options['absolute-path']) {
1191
+                if (!$options['absolute-path']) {
1192 1192
                     $result[] = $name;
1193 1193
                 } else {
1194 1194
                     $result[] = $targetFolder.'/'.$name;
1195 1195
                 }
1196 1196
                 
1197
-                if(!$options['recursive']) 
1197
+                if (!$options['recursive']) 
1198 1198
                 {
1199 1199
                     continue;
1200 1200
                 }
1201 1201
                 
1202 1202
                 $subs = self::getSubfolders($targetFolder.'/'.$name, $options);
1203
-                foreach($subs as $sub) 
1203
+                foreach ($subs as $sub) 
1204 1204
                 {
1205 1205
                     $relative = $name.'/'.$sub;
1206 1206
                     
1207
-                    if(!$options['absolute-path']) {
1207
+                    if (!$options['absolute-path']) {
1208 1208
                         $result[] = $relative;
1209 1209
                     } else {
1210 1210
                         $result[] = $targetFolder.'/'.$relative;
@@ -1254,7 +1254,7 @@  discard block
 block discarded – undo
1254 1254
         $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size.
1255 1255
         $size = floatval(preg_replace('/[^0-9\.]/', '', $size)); // Remove the non-numeric characters from the size.
1256 1256
         
1257
-        if($unit) 
1257
+        if ($unit) 
1258 1258
         {
1259 1259
             // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
1260 1260
             return round($size * pow(1024, stripos('bkmgtpezy', $unit[0])));
@@ -1273,7 +1273,7 @@  discard block
 block discarded – undo
1273 1273
     * @param int $depth The folder depth to reduce the path to
1274 1274
     * @return string
1275 1275
     */
1276
-    public static function relativizePathByDepth(string $path, int $depth=2) : string
1276
+    public static function relativizePathByDepth(string $path, int $depth = 2) : string
1277 1277
     {
1278 1278
         $path = self::normalizePath($path);
1279 1279
         
@@ -1281,17 +1281,17 @@  discard block
 block discarded – undo
1281 1281
         $tokens = array_filter($tokens); // remove empty entries (trailing slash for example)
1282 1282
         $tokens = array_values($tokens); // re-index keys
1283 1283
         
1284
-        if(empty($tokens)) {
1284
+        if (empty($tokens)) {
1285 1285
             return '';
1286 1286
         }
1287 1287
         
1288 1288
         // remove the drive if present
1289
-        if(strstr($tokens[0], ':')) {
1289
+        if (strstr($tokens[0], ':')) {
1290 1290
             array_shift($tokens);
1291 1291
         }
1292 1292
         
1293 1293
         // path was only the drive
1294
-        if(count($tokens) == 0) {
1294
+        if (count($tokens) == 0) {
1295 1295
             return '';
1296 1296
         }
1297 1297
 
@@ -1300,8 +1300,8 @@  discard block
 block discarded – undo
1300 1300
         
1301 1301
         // reduce the path to the specified depth
1302 1302
         $length = count($tokens);
1303
-        if($length > $depth) {
1304
-            $tokens = array_slice($tokens, $length-$depth);
1303
+        if ($length > $depth) {
1304
+            $tokens = array_slice($tokens, $length - $depth);
1305 1305
         }
1306 1306
 
1307 1307
         // append the last element again
@@ -1349,14 +1349,14 @@  discard block
 block discarded – undo
1349 1349
     * 
1350 1350
     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1351 1351
     */
1352
-    public static function requireFileExists(string $path, $errorCode=null) : string
1352
+    public static function requireFileExists(string $path, $errorCode = null) : string
1353 1353
     {
1354 1354
         $result = realpath($path);
1355
-        if($result !== false) {
1355
+        if ($result !== false) {
1356 1356
             return $result;
1357 1357
         }
1358 1358
         
1359
-        if($errorCode === null) {
1359
+        if ($errorCode === null) {
1360 1360
             $errorCode = self::ERROR_FILE_DOES_NOT_EXIST;
1361 1361
         }
1362 1362
         
@@ -1385,15 +1385,15 @@  discard block
 block discarded – undo
1385 1385
         
1386 1386
         $file = new \SplFileObject($path);
1387 1387
         
1388
-        if($file->eof()) {
1388
+        if ($file->eof()) {
1389 1389
             return '';
1390 1390
         }
1391 1391
         
1392
-        $targetLine = $lineNumber-1;
1392
+        $targetLine = $lineNumber - 1;
1393 1393
         
1394 1394
         $file->seek($targetLine);
1395 1395
         
1396
-        if($file->key() !== $targetLine) {
1396
+        if ($file->key() !== $targetLine) {
1397 1397
              return null;
1398 1398
         }
1399 1399
         
@@ -1419,7 +1419,7 @@  discard block
 block discarded – undo
1419 1419
         $number = $spl->key();
1420 1420
         
1421 1421
         // if seeking to the end the cursor is still at 0, there are no lines. 
1422
-        if($number === 0) 
1422
+        if ($number === 0) 
1423 1423
         {
1424 1424
             // since it's a very small file, to get reliable results,
1425 1425
             // we read its contents and use that to determine what
@@ -1427,13 +1427,13 @@  discard block
 block discarded – undo
1427 1427
             // that this is not pactical to solve with the SplFileObject.
1428 1428
             $content = file_get_contents($path);
1429 1429
             
1430
-            if(empty($content)) {
1430
+            if (empty($content)) {
1431 1431
                 return 0;
1432 1432
             }
1433 1433
         }
1434 1434
         
1435 1435
         // return the line number we were able to reach + 1 (key is zero-based)
1436
-        return $number+1;
1436
+        return $number + 1;
1437 1437
     }
1438 1438
     
1439 1439
    /**
@@ -1480,13 +1480,13 @@  discard block
 block discarded – undo
1480 1480
     * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1481 1481
     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1482 1482
     */
1483
-    public static function readLines(string $filePath, int $amount=0) : array
1483
+    public static function readLines(string $filePath, int $amount = 0) : array
1484 1484
     {
1485 1485
         self::requireFileExists($filePath);
1486 1486
         
1487 1487
         $fn = fopen($filePath, "r");
1488 1488
         
1489
-        if($fn === false) 
1489
+        if ($fn === false) 
1490 1490
         {
1491 1491
             throw new FileHelper_Exception(
1492 1492
                 'Could not open file for reading.',
@@ -1502,19 +1502,19 @@  discard block
 block discarded – undo
1502 1502
         $counter = 0;
1503 1503
         $first = true;
1504 1504
         
1505
-        while(!feof($fn)) 
1505
+        while (!feof($fn)) 
1506 1506
         {
1507 1507
             $counter++;
1508 1508
             
1509 1509
             $line = fgets($fn);
1510 1510
             
1511 1511
             // can happen with zero length files
1512
-            if($line === false) {
1512
+            if ($line === false) {
1513 1513
                 continue;
1514 1514
             }
1515 1515
             
1516 1516
             // the first line may contain a unicode BOM marker.
1517
-            if($first) 
1517
+            if ($first) 
1518 1518
             {
1519 1519
                 $line = ConvertHelper::stripUTFBom($line);
1520 1520
                 $first = false;
@@ -1522,7 +1522,7 @@  discard block
 block discarded – undo
1522 1522
             
1523 1523
             $result[] = $line;
1524 1524
             
1525
-            if($amount > 0 && $counter == $amount) {
1525
+            if ($amount > 0 && $counter == $amount) {
1526 1526
                 break;
1527 1527
             }
1528 1528
         }
@@ -1548,7 +1548,7 @@  discard block
 block discarded – undo
1548 1548
         
1549 1549
         $result = file_get_contents($filePath);
1550 1550
         
1551
-        if($result !== false) {
1551
+        if ($result !== false) {
1552 1552
             return $result;
1553 1553
         }
1554 1554
         
@@ -1578,7 +1578,7 @@  discard block
 block discarded – undo
1578 1578
     {
1579 1579
         $actual = realpath($path);
1580 1580
         
1581
-        if($actual === false) 
1581
+        if ($actual === false) 
1582 1582
         {
1583 1583
             throw new FileHelper_Exception(
1584 1584
                 'Folder does not exist',
@@ -1590,7 +1590,7 @@  discard block
 block discarded – undo
1590 1590
             );
1591 1591
         }
1592 1592
         
1593
-        if(is_dir($path)) 
1593
+        if (is_dir($path)) 
1594 1594
         {
1595 1595
             return self::normalizePath($actual);
1596 1596
         }
Please login to merge, or discard this patch.
src/RequestHelper.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 
242 242
         $output = curl_exec($ch);
243 243
 
244
-        if(isset($this->logfilePointer))
244
+        if (isset($this->logfilePointer))
245 245
         {
246 246
             fclose($this->logfilePointer);
247 247
         }
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
         // CURL will complain about an empty response when the 
254 254
         // server sends a 100-continue code. That should not be
255 255
         // regarded as an error.
256
-        if($output === false && $this->response->getCode() !== 100)
256
+        if ($output === false && $this->response->getCode() !== 100)
257 257
         {
258 258
             $curlCode = curl_errno($ch);
259 259
             
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
     {
290 290
         $ch = curl_init();
291 291
         
292
-        if(!is_resource($ch))
292
+        if (!is_resource($ch))
293 293
         {
294 294
             throw new RequestHelper_Exception(
295 295
                 'Could not initialize a new cURL instance.',
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
         }
300 300
 
301 301
         $this->setHeader('Content-Length', (string)$this->boundaries->getContentLength());
302
-        $this->setHeader('Content-Type', 'multipart/form-data; boundary=' . $this->mimeBoundary);
302
+        $this->setHeader('Content-Type', 'multipart/form-data; boundary='.$this->mimeBoundary);
303 303
 
304 304
         curl_setopt($ch, CURLOPT_POST, true);
305 305
         curl_setopt($ch, CURLOPT_URL, $url->getNormalizedWithoutAuth());
@@ -312,18 +312,18 @@  discard block
 block discarded – undo
312 312
         
313 313
         $loggingEnabled = $this->configureLogging($ch);
314 314
         
315
-        if(!$loggingEnabled) 
315
+        if (!$loggingEnabled) 
316 316
         {
317 317
             curl_setopt($ch, CURLINFO_HEADER_OUT, true);
318 318
         }
319 319
         
320
-        if($this->verifySSL)
320
+        if ($this->verifySSL)
321 321
         {
322 322
             curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
323 323
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
324 324
         }
325 325
         
326
-        if($url->hasUsername())
326
+        if ($url->hasUsername())
327 327
         {
328 328
             curl_setopt($ch, CURLOPT_USERNAME, $url->getUsername());
329 329
             curl_setopt($ch, CURLOPT_PASSWORD, $url->getPassword());
@@ -338,14 +338,14 @@  discard block
 block discarded – undo
338 338
     */
339 339
     protected function configureLogging($ch) : bool
340 340
     {
341
-        if(empty($this->logfile))
341
+        if (empty($this->logfile))
342 342
         {
343 343
             return false;
344 344
         }
345 345
         
346 346
         $res = fopen($this->logfile, 'w+');
347 347
         
348
-        if($res === false)
348
+        if ($res === false)
349 349
         {
350 350
             throw new RequestHelper_Exception(
351 351
                 'Cannot open logfile for writing.',
@@ -375,7 +375,7 @@  discard block
 block discarded – undo
375 375
         
376 376
         $this->setHeader('Expect', '');
377 377
         
378
-        foreach($this->headers as $name => $value) {
378
+        foreach ($this->headers as $name => $value) {
379 379
             $result[] = $name.': '.$value;
380 380
         }
381 381
         
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     {
393 393
         $response = $this->getResponse();
394 394
         
395
-        if($response !== null) {
395
+        if ($response !== null) {
396 396
             return $response->getHeaders();
397 397
         }
398 398
 
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
     */
429 429
     public function getHeader(string $name) : string
430 430
     {
431
-        if(isset($this->headers[$name]))
431
+        if (isset($this->headers[$name]))
432 432
         {
433 433
             return $this->headers[$name];
434 434
         }
Please login to merge, or discard this patch.