Passed
Push — master ( ae2e8a...604bcb )
by Sebastian
04:23
created
src/URLInfo.php 2 patches
Indentation   +199 added lines, -199 removed lines patch added patch discarded remove patch
@@ -34,42 +34,42 @@  discard block
 block discarded – undo
34 34
     const TYPE_PHONE = 'phone';
35 35
     const TYPE_URL = 'url';
36 36
     
37
-   /**
38
-    * The original URL that was passed to the constructor.
39
-    * @var string
40
-    */
37
+    /**
38
+     * The original URL that was passed to the constructor.
39
+     * @var string
40
+     */
41 41
     protected $rawURL;
42 42
 
43
-   /**
44
-    * @var array
45
-    */
43
+    /**
44
+     * @var array
45
+     */
46 46
     protected $info;
47 47
     
48
-   /**
49
-    * @var string[]
50
-    */
48
+    /**
49
+     * @var string[]
50
+     */
51 51
     protected $excludedParams = array();
52 52
     
53
-   /**
54
-    * @var bool
55
-    * @see URLInfo::setParamExclusion()
56
-    */
53
+    /**
54
+     * @var bool
55
+     * @see URLInfo::setParamExclusion()
56
+     */
57 57
     protected $paramExclusion = false;
58 58
     
59
-   /**
60
-    * @var array
61
-    * @see URLInfo::getTypeLabel()
62
-    */
59
+    /**
60
+     * @var array
61
+     * @see URLInfo::getTypeLabel()
62
+     */
63 63
     protected static $typeLabels;
64 64
     
65
-   /**
66
-    * @var bool
67
-    */
65
+    /**
66
+     * @var bool
67
+     */
68 68
     protected $highlightExcluded = false;
69 69
     
70
-   /**
71
-    * @var array
72
-    */
70
+    /**
71
+     * @var array
72
+     */
73 73
     protected $infoKeys = array(
74 74
         'scheme',
75 75
         'host',
@@ -81,24 +81,24 @@  discard block
 block discarded – undo
81 81
         'fragment'
82 82
     );
83 83
     
84
-   /**
85
-    * @var string
86
-    */
84
+    /**
85
+     * @var string
86
+     */
87 87
     protected $url;
88 88
     
89
-   /**
90
-    * @var URLInfo_Parser
91
-    */
89
+    /**
90
+     * @var URLInfo_Parser
91
+     */
92 92
     protected $parser;
93 93
     
94
-   /**
95
-    * @var URLInfo_Normalizer
96
-    */
94
+    /**
95
+     * @var URLInfo_Normalizer
96
+     */
97 97
     protected $normalizer;
98 98
     
99
-   /**
100
-    * @var bool
101
-    */
99
+    /**
100
+     * @var bool
101
+     */
102 102
     protected $encodeUTFChars = false;
103 103
     
104 104
     public function __construct(string $url)
@@ -115,14 +115,14 @@  discard block
 block discarded – undo
115 115
         $this->info = $this->parser->getInfo();
116 116
     }
117 117
     
118
-   /**
119
-    * Whether to URL encode any non-encoded UTF8 characters in the URL.
120
-    * Default is to leave them as-is for better readability, since 
121
-    * browsers handle this well.
122
-    * 
123
-    * @param bool $enabled
124
-    * @return URLInfo
125
-    */
118
+    /**
119
+     * Whether to URL encode any non-encoded UTF8 characters in the URL.
120
+     * Default is to leave them as-is for better readability, since 
121
+     * browsers handle this well.
122
+     * 
123
+     * @param bool $enabled
124
+     * @return URLInfo
125
+     */
126 126
     public function setUTFEncoding(bool $enabled=true) : URLInfo
127 127
     {
128 128
         if($this->encodeUTFChars !== $enabled)
@@ -139,13 +139,13 @@  discard block
 block discarded – undo
139 139
         return $this->encodeUTFChars;
140 140
     }
141 141
     
142
-   /**
143
-    * Filters an URL: removes control characters and the
144
-    * like to have a clean URL to work with.
145
-    * 
146
-    * @param string $url
147
-    * @return string
148
-    */
142
+    /**
143
+     * Filters an URL: removes control characters and the
144
+     * like to have a clean URL to work with.
145
+     * 
146
+     * @param string $url
147
+     * @return string
148
+     */
149 149
     public static function filterURL(string $url)
150 150
     {
151 151
         return URLInfo_Filter::filter($url);
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
         return $this->info['type'] === self::TYPE_PHONE;
176 176
     }
177 177
     
178
-   /**
179
-    * Whether the URL is a regular URL, not one of the 
180
-    * other types like a phone number or email address.
181
-    * 
182
-    * @return bool
183
-    */
178
+    /**
179
+     * Whether the URL is a regular URL, not one of the 
180
+     * other types like a phone number or email address.
181
+     * 
182
+     * @return bool
183
+     */
184 184
     public function isURL() : bool
185 185
     {
186 186
         $host = $this->getHost();
@@ -192,20 +192,20 @@  discard block
 block discarded – undo
192 192
         return $this->parser->isValid();
193 193
     }
194 194
     
195
-   /**
196
-    * Retrieves the host name, or an empty string if none is present.
197
-    * 
198
-    * @return string
199
-    */
195
+    /**
196
+     * Retrieves the host name, or an empty string if none is present.
197
+     * 
198
+     * @return string
199
+     */
200 200
     public function getHost() : string
201 201
     {
202 202
         return $this->getInfoKey('host');
203 203
     }
204 204
     
205
-   /**
206
-    * Retrieves the path, or an empty string if none is present.
207
-    * @return string
208
-    */
205
+    /**
206
+     * Retrieves the path, or an empty string if none is present.
207
+     * @return string
208
+     */
209 209
     public function getPath() : string
210 210
     {
211 211
         return $this->getInfoKey('path');
@@ -221,10 +221,10 @@  discard block
 block discarded – undo
221 221
         return $this->getInfoKey('scheme');
222 222
     }
223 223
     
224
-   /**
225
-    * Retrieves the port specified in the URL, or -1 if none is preseent.
226
-    * @return int
227
-    */
224
+    /**
225
+     * Retrieves the port specified in the URL, or -1 if none is preseent.
226
+     * @return int
227
+     */
228 228
     public function getPort() : int
229 229
     {
230 230
         $port = $this->getInfoKey('port');
@@ -236,13 +236,13 @@  discard block
 block discarded – undo
236 236
         return -1;
237 237
     }
238 238
     
239
-   /**
240
-    * Retrieves the raw query string, or an empty string if none is present.
241
-    * 
242
-    * @return string
243
-    * 
244
-    * @see URLInfo::getParams()
245
-    */
239
+    /**
240
+     * Retrieves the raw query string, or an empty string if none is present.
241
+     * 
242
+     * @return string
243
+     * 
244
+     * @see URLInfo::getParams()
245
+     */
246 246
     public function getQuery() : string
247 247
     {
248 248
         return $this->getInfoKey('query');
@@ -258,20 +258,20 @@  discard block
 block discarded – undo
258 258
         return $this->getInfoKey('pass');
259 259
     }
260 260
     
261
-   /**
262
-    * Whether the URL contains a port number.
263
-    * @return bool
264
-    */
261
+    /**
262
+     * Whether the URL contains a port number.
263
+     * @return bool
264
+     */
265 265
     public function hasPort() : bool
266 266
     {
267 267
         return $this->getPort() !== -1;
268 268
     }
269 269
     
270
-   /**
271
-    * Alias for the hasParams() method.
272
-    * @return bool
273
-    * @see URLInfo::hasParams()
274
-    */
270
+    /**
271
+     * Alias for the hasParams() method.
272
+     * @return bool
273
+     * @see URLInfo::hasParams()
274
+     */
275 275
     public function hasQuery() : bool
276 276
     {
277 277
         return $this->hasParams();
@@ -316,23 +316,23 @@  discard block
 block discarded – undo
316 316
         return '';
317 317
     }
318 318
 
319
-   /**
320
-    * Retrieves a normalized URL: this ensures that all parameters
321
-    * in the URL are always in the same order.
322
-    * 
323
-    * @return string
324
-    */
319
+    /**
320
+     * Retrieves a normalized URL: this ensures that all parameters
321
+     * in the URL are always in the same order.
322
+     * 
323
+     * @return string
324
+     */
325 325
     public function getNormalized() : string
326 326
     {
327 327
         return $this->normalize(true);
328 328
     }
329 329
     
330
-   /**
331
-    * Like getNormalized(), but if a username and password are present
332
-    * in the URL, returns the URL without them.
333
-    * 
334
-    * @return string
335
-    */
330
+    /**
331
+     * Like getNormalized(), but if a username and password are present
332
+     * in the URL, returns the URL without them.
333
+     * 
334
+     * @return string
335
+     */
336 336
     public function getNormalizedWithoutAuth() : string
337 337
     {
338 338
         return $this->normalize(false);
@@ -353,25 +353,25 @@  discard block
 block discarded – undo
353 353
         return $this->normalizer->normalize();
354 354
     }
355 355
     
356
-   /**
357
-    * Creates a hash of the URL, which can be used for comparisons.
358
-    * Since any parameters in the URL's query are sorted alphabetically,
359
-    * the same links with a different parameter order will have the 
360
-    * same hash.
361
-    * 
362
-    * @return string
363
-    */
356
+    /**
357
+     * Creates a hash of the URL, which can be used for comparisons.
358
+     * Since any parameters in the URL's query are sorted alphabetically,
359
+     * the same links with a different parameter order will have the 
360
+     * same hash.
361
+     * 
362
+     * @return string
363
+     */
364 364
     public function getHash()
365 365
     {
366 366
         return \AppUtils\ConvertHelper::string2shortHash($this->getNormalized());
367 367
     }
368 368
 
369
-   /**
370
-    * Highlights the URL using HTML tags with specific highlighting
371
-    * class names.
372
-    * 
373
-    * @return string Will return an empty string if the URL is not valid.
374
-    */
369
+    /**
370
+     * Highlights the URL using HTML tags with specific highlighting
371
+     * class names.
372
+     * 
373
+     * @return string Will return an empty string if the URL is not valid.
374
+     */
375 375
     public function getHighlighted() : string
376 376
     {
377 377
         if(!$this->isValid()) {
@@ -405,15 +405,15 @@  discard block
 block discarded – undo
405 405
         return count($params);
406 406
     }
407 407
     
408
-   /**
409
-    * Retrieves all parameters specified in the url,
410
-    * if any, as an associative array. 
411
-    * 
412
-    * NOTE: Ignores parameters that have been added
413
-    * to the excluded parameters list.
414
-    *
415
-    * @return array
416
-    */
408
+    /**
409
+     * Retrieves all parameters specified in the url,
410
+     * if any, as an associative array. 
411
+     * 
412
+     * NOTE: Ignores parameters that have been added
413
+     * to the excluded parameters list.
414
+     *
415
+     * @return array
416
+     */
417 417
     public function getParams() : array
418 418
     {
419 419
         if(!$this->paramExclusion || empty($this->excludedParams)) {
@@ -431,22 +431,22 @@  discard block
 block discarded – undo
431 431
         return $keep;
432 432
     }
433 433
     
434
-   /**
435
-    * Retrieves the names of all parameters present in the URL, if any.
436
-    * @return string[]
437
-    */
434
+    /**
435
+     * Retrieves the names of all parameters present in the URL, if any.
436
+     * @return string[]
437
+     */
438 438
     public function getParamNames() : array
439 439
     {
440 440
         $params = $this->getParams();
441 441
         return array_keys($params);
442 442
     }
443 443
     
444
-   /**
445
-    * Retrieves a specific parameter value from the URL.
446
-    * 
447
-    * @param string $name
448
-    * @return string The parameter value, or an empty string if it does not exist.
449
-    */
444
+    /**
445
+     * Retrieves a specific parameter value from the URL.
446
+     * 
447
+     * @param string $name
448
+     * @return string The parameter value, or an empty string if it does not exist.
449
+     */
450 450
     public function getParam(string $name) : string
451 451
     {
452 452
         if(isset($this->info['params'][$name])) {
@@ -456,16 +456,16 @@  discard block
 block discarded – undo
456 456
         return '';
457 457
     }
458 458
     
459
-   /**
460
-    * Excludes an URL parameter entirely if present:
461
-    * the parser will act as if the parameter was not
462
-    * even present in the source URL, effectively
463
-    * stripping it.
464
-    *
465
-    * @param string $name
466
-    * @param string $reason A human readable explanation why this is excluded - used when highlighting links.
467
-    * @return URLInfo
468
-    */
459
+    /**
460
+     * Excludes an URL parameter entirely if present:
461
+     * the parser will act as if the parameter was not
462
+     * even present in the source URL, effectively
463
+     * stripping it.
464
+     *
465
+     * @param string $name
466
+     * @param string $reason A human readable explanation why this is excluded - used when highlighting links.
467
+     * @return URLInfo
468
+     */
469 469
     public function excludeParam(string $name, string $reason) : URLInfo
470 470
     {
471 471
         if(!isset($this->excludedParams[$name]))
@@ -518,25 +518,25 @@  discard block
 block discarded – undo
518 518
         return self::$typeLabels[$this->getType()];
519 519
     }
520 520
 
521
-   /**
522
-    * Whether excluded parameters should be highlighted in
523
-    * a different color in the URL when using the
524
-    * {@link URLInfo::getHighlighted()} method.
525
-    *
526
-    * @param bool $highlight
527
-    * @return URLInfo
528
-    */
521
+    /**
522
+     * Whether excluded parameters should be highlighted in
523
+     * a different color in the URL when using the
524
+     * {@link URLInfo::getHighlighted()} method.
525
+     *
526
+     * @param bool $highlight
527
+     * @return URLInfo
528
+     */
529 529
     public function setHighlightExcluded(bool $highlight=true) : URLInfo
530 530
     {
531 531
         $this->highlightExcluded = $highlight;
532 532
         return $this;
533 533
     }
534 534
     
535
-   /**
536
-    * Returns an array with all relevant URL information.
537
-    * 
538
-    * @return array
539
-    */
535
+    /**
536
+     * Returns an array with all relevant URL information.
537
+     * 
538
+     * @return array
539
+     */
540 540
     public function toArray() : array
541 541
     {
542 542
         return array(
@@ -580,24 +580,24 @@  discard block
 block discarded – undo
580 580
         return $this;
581 581
     }
582 582
     
583
-   /**
584
-    * Whether the parameter exclusion mode is enabled:
585
-    * In this case, if any parameters have been added to the
586
-    * exclusion list, all relevant methods will exclude these.
587
-    *
588
-    * @return bool
589
-    */
583
+    /**
584
+     * Whether the parameter exclusion mode is enabled:
585
+     * In this case, if any parameters have been added to the
586
+     * exclusion list, all relevant methods will exclude these.
587
+     *
588
+     * @return bool
589
+     */
590 590
     public function isParamExclusionEnabled() : bool
591 591
     {
592 592
         return $this->paramExclusion;
593 593
     }
594 594
     
595
-   /**
596
-    * Checks whether the link contains any parameters that
597
-    * are on the list of excluded parameters.
598
-    *
599
-    * @return bool
600
-    */
595
+    /**
596
+     * Checks whether the link contains any parameters that
597
+     * are on the list of excluded parameters.
598
+     *
599
+     * @return bool
600
+     */
601 601
     public function containsExcludedParams() : bool
602 602
     {
603 603
         if(empty($this->excludedParams)) {
@@ -665,16 +665,16 @@  discard block
 block discarded – undo
665 665
         return $this->highlightExcluded;
666 666
     }
667 667
     
668
-   /**
669
-    * Checks if the URL exists, i.e. can be connected to. Will return
670
-    * true if the returned HTTP status code is `200` or `302`.
671
-    * 
672
-    * NOTE: If the target URL requires HTTP authentication, the username
673
-    * and password should be integrated into the URL.
674
-    * 
675
-    * @return bool
676
-    * @throws BaseException
677
-    */
668
+    /**
669
+     * Checks if the URL exists, i.e. can be connected to. Will return
670
+     * true if the returned HTTP status code is `200` or `302`.
671
+     * 
672
+     * NOTE: If the target URL requires HTTP authentication, the username
673
+     * and password should be integrated into the URL.
674
+     * 
675
+     * @return bool
676
+     * @throws BaseException
677
+     */
678 678
     public function tryConnect(bool $verifySSL=true) : bool
679 679
     {
680 680
         return $this->createConnectionTester()
@@ -682,26 +682,26 @@  discard block
 block discarded – undo
682 682
         ->canConnect();
683 683
     }
684 684
     
685
-   /**
686
-    * Creates the connection tester instance that is used
687
-    * to check if a URL can be connected to, and which is
688
-    * used in the {@see URLInfo::tryConnect()} method. It
689
-    * allows more settings to be used.
690
-    * 
691
-    * @return URLInfo_ConnectionTester
692
-    */
685
+    /**
686
+     * Creates the connection tester instance that is used
687
+     * to check if a URL can be connected to, and which is
688
+     * used in the {@see URLInfo::tryConnect()} method. It
689
+     * allows more settings to be used.
690
+     * 
691
+     * @return URLInfo_ConnectionTester
692
+     */
693 693
     public function createConnectionTester() : URLInfo_ConnectionTester
694 694
     {
695 695
         return new URLInfo_ConnectionTester($this);
696 696
     }
697 697
     
698
-   /**
699
-    * Adds/overwrites an URL parameter.
700
-    *  
701
-    * @param string $name
702
-    * @param string $val
703
-    * @return URLInfo
704
-    */
698
+    /**
699
+     * Adds/overwrites an URL parameter.
700
+     *  
701
+     * @param string $name
702
+     * @param string $val
703
+     * @return URLInfo
704
+     */
705 705
     public function setParam(string $name, string $val) : URLInfo
706 706
     {
707 707
         $this->info['params'][$name] = $val;
@@ -709,13 +709,13 @@  discard block
 block discarded – undo
709 709
         return $this;
710 710
     }
711 711
     
712
-   /**
713
-    * Removes an URL parameter. Has no effect if the 
714
-    * parameter is not present to begin with.
715
-    * 
716
-    * @param string $param
717
-    * @return URLInfo
718
-    */
712
+    /**
713
+     * Removes an URL parameter. Has no effect if the 
714
+     * parameter is not present to begin with.
715
+     * 
716
+     * @param string $param
717
+     * @return URLInfo
718
+     */
719 719
     public function removeParam(string $param) : URLInfo
720 720
     {
721 721
         if(isset($this->info['params'][$param]))
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -123,9 +123,9 @@  discard block
 block discarded – undo
123 123
     * @param bool $enabled
124 124
     * @return URLInfo
125 125
     */
126
-    public function setUTFEncoding(bool $enabled=true) : URLInfo
126
+    public function setUTFEncoding(bool $enabled = true) : URLInfo
127 127
     {
128
-        if($this->encodeUTFChars !== $enabled)
128
+        if ($this->encodeUTFChars !== $enabled)
129 129
         {
130 130
             $this->encodeUTFChars = $enabled;
131 131
             $this->parse(); // re-parse the URL to apply the changes
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
     {
230 230
         $port = $this->getInfoKey('port');
231 231
         
232
-        if(!empty($port)) {
232
+        if (!empty($port)) {
233 233
             return (int)$port;
234 234
         }
235 235
         
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
     
310 310
     protected function getInfoKey(string $name) : string
311 311
     {
312
-        if(isset($this->info[$name])) {
312
+        if (isset($this->info[$name])) {
313 313
             return (string)$this->info[$name];
314 314
         }
315 315
         
@@ -338,13 +338,13 @@  discard block
 block discarded – undo
338 338
         return $this->normalize(false);
339 339
     }
340 340
     
341
-    protected function normalize(bool $auth=true) : string
341
+    protected function normalize(bool $auth = true) : string
342 342
     {
343
-        if(!$this->isValid()) {
343
+        if (!$this->isValid()) {
344 344
             return '';
345 345
         }
346 346
         
347
-        if(!isset($this->normalizer)) {
347
+        if (!isset($this->normalizer)) {
348 348
             $this->normalizer = new URLInfo_Normalizer($this);
349 349
         }
350 350
         
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
     */
375 375
     public function getHighlighted() : string
376 376
     {
377
-        if(!$this->isValid()) {
377
+        if (!$this->isValid()) {
378 378
             return '';
379 379
         }
380 380
         
@@ -416,14 +416,14 @@  discard block
 block discarded – undo
416 416
     */
417 417
     public function getParams() : array
418 418
     {
419
-        if(!$this->paramExclusion || empty($this->excludedParams)) {
419
+        if (!$this->paramExclusion || empty($this->excludedParams)) {
420 420
             return $this->info['params'];
421 421
         }
422 422
         
423 423
         $keep = array();
424
-        foreach($this->info['params'] as $name => $value) 
424
+        foreach ($this->info['params'] as $name => $value) 
425 425
         {
426
-            if(!isset($this->excludedParams[$name])) {
426
+            if (!isset($this->excludedParams[$name])) {
427 427
                 $keep[$name] = $value;
428 428
             }
429 429
         }
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
     */
450 450
     public function getParam(string $name) : string
451 451
     {
452
-        if(isset($this->info['params'][$name])) {
452
+        if (isset($this->info['params'][$name])) {
453 453
             return $this->info['params'][$name];
454 454
         }
455 455
         
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
     */
469 469
     public function excludeParam(string $name, string $reason) : URLInfo
470 470
     {
471
-        if(!isset($this->excludedParams[$name]))
471
+        if (!isset($this->excludedParams[$name]))
472 472
         {
473 473
             $this->excludedParams[$name] = $reason;
474 474
             $this->setParamExclusion();
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
     
495 495
     public function getTypeLabel() : string
496 496
     {
497
-        if(!isset(self::$typeLabels))
497
+        if (!isset(self::$typeLabels))
498 498
         {
499 499
             self::$typeLabels = array(
500 500
                 self::TYPE_EMAIL => t('Email'),
@@ -506,7 +506,7 @@  discard block
 block discarded – undo
506 506
         
507 507
         $type = $this->getType();
508 508
         
509
-        if(!isset(self::$typeLabels[$type]))
509
+        if (!isset(self::$typeLabels[$type]))
510 510
         {
511 511
             throw new BaseException(
512 512
                 sprintf('Unknown URL type label for type [%s].', $type),
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
     * @param bool $highlight
527 527
     * @return URLInfo
528 528
     */
529
-    public function setHighlightExcluded(bool $highlight=true) : URLInfo
529
+    public function setHighlightExcluded(bool $highlight = true) : URLInfo
530 530
     {
531 531
         $this->highlightExcluded = $highlight;
532 532
         return $this;
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
      * @see URLInfo::isParamExclusionEnabled()
575 575
      * @see URLInfo::setHighlightExcluded()
576 576
      */
577
-    public function setParamExclusion(bool $enabled=true) : URLInfo
577
+    public function setParamExclusion(bool $enabled = true) : URLInfo
578 578
     {
579 579
         $this->paramExclusion = $enabled;
580 580
         return $this;
@@ -600,13 +600,13 @@  discard block
 block discarded – undo
600 600
     */
601 601
     public function containsExcludedParams() : bool
602 602
     {
603
-        if(empty($this->excludedParams)) {
603
+        if (empty($this->excludedParams)) {
604 604
             return false;
605 605
         }
606 606
         
607 607
         $names = array_keys($this->info['params']);
608
-        foreach($names as $name) {
609
-            if(isset($this->excludedParams[$name])) {
608
+        foreach ($names as $name) {
609
+            if (isset($this->excludedParams[$name])) {
610 610
                 return true;
611 611
             }
612 612
         }
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
 
623 623
     public function offsetSet($offset, $value) 
624 624
     {
625
-        if(in_array($offset, $this->infoKeys)) {
625
+        if (in_array($offset, $this->infoKeys)) {
626 626
             $this->info[$offset] = $value;
627 627
         }
628 628
     }
@@ -639,11 +639,11 @@  discard block
 block discarded – undo
639 639
     
640 640
     public function offsetGet($offset) 
641 641
     {
642
-        if($offset === 'port') {
642
+        if ($offset === 'port') {
643 643
             return $this->getPort();
644 644
         }
645 645
         
646
-        if(in_array($offset, $this->infoKeys)) {
646
+        if (in_array($offset, $this->infoKeys)) {
647 647
             return $this->getInfoKey($offset);
648 648
         }
649 649
         
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
     * @return bool
676 676
     * @throws BaseException
677 677
     */
678
-    public function tryConnect(bool $verifySSL=true) : bool
678
+    public function tryConnect(bool $verifySSL = true) : bool
679 679
     {
680 680
         return $this->createConnectionTester()
681 681
         ->setVerifySSL($verifySSL)
@@ -718,7 +718,7 @@  discard block
 block discarded – undo
718 718
     */
719 719
     public function removeParam(string $param) : URLInfo
720 720
     {
721
-        if(isset($this->info['params'][$param]))
721
+        if (isset($this->info['params'][$param]))
722 722
         {
723 723
             unset($this->info['params'][$param]);
724 724
         }
Please login to merge, or discard this patch.
src/URLInfo/ConnectionTester.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
 {
23 23
     use Traits_Optionable;
24 24
     
25
-   /**
26
-    * @var URLInfo
27
-    */
25
+    /**
26
+     * @var URLInfo
27
+     */
28 28
     private $url;
29 29
     
30 30
     public function __construct(URLInfo $url)
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
         );
42 42
     }
43 43
     
44
-   /**
45
-    * Whether to verify the host's SSL certificate, in
46
-    * case of an https connection.
47
-    * 
48
-    * @param bool $verifySSL
49
-    * @return URLInfo_ConnectionTester
50
-    */
44
+    /**
45
+     * Whether to verify the host's SSL certificate, in
46
+     * case of an https connection.
47
+     * 
48
+     * @param bool $verifySSL
49
+     * @return URLInfo_ConnectionTester
50
+     */
51 51
     public function setVerifySSL(bool $verifySSL=true) : URLInfo_ConnectionTester
52 52
     {
53 53
         $this->setOption('verify-ssl', $verifySSL);
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
         return $this->getIntOption('timeout');
82 82
     }
83 83
     
84
-   /**
85
-    * Initializes the CURL instance.
86
-    * 
87
-    * @throws BaseException
88
-    * @return resource
89
-    */
84
+    /**
85
+     * Initializes the CURL instance.
86
+     * 
87
+     * @throws BaseException
88
+     * @return resource
89
+     */
90 90
     private function initCURL()
91 91
     {
92 92
         requireCURL();
@@ -105,9 +105,9 @@  discard block
 block discarded – undo
105 105
         return $ch;
106 106
     }
107 107
     
108
-   /**
109
-    * @param resource $ch
110
-    */
108
+    /**
109
+     * @param resource $ch
110
+     */
111 111
     private function configureOptions($ch) : void
112 112
     {
113 113
         if($this->isVerboseModeEnabled())
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     * @param bool $verifySSL
49 49
     * @return URLInfo_ConnectionTester
50 50
     */
51
-    public function setVerifySSL(bool $verifySSL=true) : URLInfo_ConnectionTester
51
+    public function setVerifySSL(bool $verifySSL = true) : URLInfo_ConnectionTester
52 52
     {
53 53
         $this->setOption('verify-ssl', $verifySSL);
54 54
             return $this;
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         return $this->getBoolOption('verify-ssl');
60 60
     }
61 61
     
62
-    public function setVerboseMode(bool $enabled=true) : URLInfo_ConnectionTester
62
+    public function setVerboseMode(bool $enabled = true) : URLInfo_ConnectionTester
63 63
     {
64 64
         $this->setOption('curl-verbose', $enabled);
65 65
         return $this;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         
94 94
         $ch = curl_init();
95 95
         
96
-        if(!is_resource($ch))
96
+        if (!is_resource($ch))
97 97
         {
98 98
             throw new BaseException(
99 99
                 'Could not initialize a new cURL instance.',
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
     */
111 111
     private function configureOptions($ch) : void
112 112
     {
113
-        if($this->isVerboseModeEnabled())
113
+        if ($this->isVerboseModeEnabled())
114 114
         {
115 115
             curl_setopt($ch, CURLOPT_VERBOSE, true);
116 116
         }
@@ -120,13 +120,13 @@  discard block
 block discarded – undo
120 120
         curl_setopt($ch, CURLOPT_TIMEOUT, $this->getTimeout());
121 121
         curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
122 122
         
123
-        if(!$this->isVerifySSLEnabled())
123
+        if (!$this->isVerifySSLEnabled())
124 124
         {
125 125
             curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
126 126
             curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
127 127
         }
128 128
         
129
-        if($this->url->hasUsername())
129
+        if ($this->url->hasUsername())
130 130
         {
131 131
             curl_setopt($ch, CURLOPT_USERNAME, $this->url->getUsername());
132 132
             curl_setopt($ch, CURLOPT_PASSWORD, $this->url->getPassword());
Please login to merge, or discard this patch.
src/RequestHelper.php 3 patches
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.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -261,8 +261,7 @@
 block discarded – undo
261 261
                 $curlCode,
262 262
                 curl_error($ch).' | Explanation: '.curl_strerror($curlCode)
263 263
             );
264
-        }
265
-        else
264
+        } else
266 265
         {
267 266
             $this->response->setBody((string)$output);
268 267
         }
Please login to merge, or discard this patch.
Indentation   +151 added lines, -151 removed lines patch added patch discarded remove patch
@@ -32,62 +32,62 @@  discard block
 block discarded – undo
32 32
     const ERROR_CURL_INIT_FAILED = 17903;
33 33
     const ERROR_CANNOT_OPEN_LOGFILE = 17904;
34 34
 
35
-   /**
36
-    * @var string
37
-    */
35
+    /**
36
+     * @var string
37
+     */
38 38
     protected $eol = "\r\n";
39 39
 
40
-   /**
41
-    * @var string
42
-    */
40
+    /**
41
+     * @var string
42
+     */
43 43
     protected $mimeBoundary;
44 44
 
45
-   /**
46
-    * @var string
47
-    */
45
+    /**
46
+     * @var string
47
+     */
48 48
     protected $destination;
49 49
 
50
-   /**
51
-    * @var array<string,string>
52
-    */
50
+    /**
51
+     * @var array<string,string>
52
+     */
53 53
     protected $headers = array();
54 54
     
55
-   /**
56
-    * Whether to verify SSL certificates.
57
-    * @var bool
58
-    */
55
+    /**
56
+     * Whether to verify SSL certificates.
57
+     * @var bool
58
+     */
59 59
     protected $verifySSL = true;
60 60
     
61
-   /**
62
-    * @var RequestHelper_Boundaries
63
-    */
61
+    /**
62
+     * @var RequestHelper_Boundaries
63
+     */
64 64
     protected $boundaries;
65 65
     
66
-   /**
67
-    * @var RequestHelper_Response|NULL
68
-    */
66
+    /**
67
+     * @var RequestHelper_Response|NULL
68
+     */
69 69
     protected $response;
70 70
 
71
-   /**
72
-    * Timeout duration, in seconds.
73
-    * @var integer
74
-    */
71
+    /**
72
+     * Timeout duration, in seconds.
73
+     * @var integer
74
+     */
75 75
     protected $timeout = 30;
76 76
     
77
-   /**
78
-    * @var string
79
-    */
77
+    /**
78
+     * @var string
79
+     */
80 80
     protected $logfile = '';
81 81
 
82
-   /**
83
-    * @var resource|NULL
84
-    */
82
+    /**
83
+     * @var resource|NULL
84
+     */
85 85
     protected $logfilePointer = null;
86 86
     
87
-   /**
88
-    * Creates a new request helper to send POST data to the specified destination URL.
89
-    * @param string $destinationURL
90
-    */
87
+    /**
88
+     * Creates a new request helper to send POST data to the specified destination URL.
89
+     * @param string $destinationURL
90
+     */
91 91
     public function __construct(string $destinationURL)
92 92
     {
93 93
         $this->destination = $destinationURL;
@@ -112,13 +112,13 @@  discard block
 block discarded – undo
112 112
         return $this->eol;
113 113
     }
114 114
     
115
-   /**
116
-    * Sets the timeout for the request, in seconds. If the request
117
-    * takes longer, it will be cancelled and an exception triggered.
118
-    * 
119
-    * @param int $seconds
120
-    * @return RequestHelper
121
-    */
115
+    /**
116
+     * Sets the timeout for the request, in seconds. If the request
117
+     * takes longer, it will be cancelled and an exception triggered.
118
+     * 
119
+     * @param int $seconds
120
+     * @return RequestHelper
121
+     */
122 122
     public function setTimeout(int $seconds) : RequestHelper
123 123
     {
124 124
         $this->timeout = $seconds;
@@ -131,13 +131,13 @@  discard block
 block discarded – undo
131 131
         return $this->timeout;
132 132
     }
133 133
     
134
-   /**
135
-    * Enables verbose logging of the CURL request, which
136
-    * is then redirected to the target file.
137
-    * 
138
-    * @param string $targetFile
139
-    * @return RequestHelper
140
-    */
134
+    /**
135
+     * Enables verbose logging of the CURL request, which
136
+     * is then redirected to the target file.
137
+     * 
138
+     * @param string $targetFile
139
+     * @return RequestHelper
140
+     */
141 141
     public function enableLogging(string $targetFile) : RequestHelper
142 142
     {
143 143
         $this->logfile = $targetFile;
@@ -145,15 +145,15 @@  discard block
 block discarded – undo
145 145
         return $this;
146 146
     }
147 147
 
148
-   /**
149
-    * Adds a file to be sent with the request.
150
-    *
151
-    * @param string $varName The variable name to send the file in
152
-    * @param string $fileName The name of the file as it should be received at the destination
153
-    * @param string $content The raw content of the file
154
-    * @param string $contentType The content type, use the constants to specify this
155
-    * @param string $encoding The encoding of the file, use the constants to specify this
156
-    */
148
+    /**
149
+     * Adds a file to be sent with the request.
150
+     *
151
+     * @param string $varName The variable name to send the file in
152
+     * @param string $fileName The name of the file as it should be received at the destination
153
+     * @param string $content The raw content of the file
154
+     * @param string $contentType The content type, use the constants to specify this
155
+     * @param string $encoding The encoding of the file, use the constants to specify this
156
+     */
157 157
     public function addFile(string $varName, string $fileName, string $content, string $contentType = '', string $encoding = '') : RequestHelper
158 158
     {
159 159
         $this->boundaries->addFile($varName, $fileName, $content, $contentType, $encoding);
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
         return $this;
162 162
     }
163 163
     
164
-   /**
165
-    * Adds arbitrary content.
166
-    * 
167
-    * @param string $varName The variable name to send the content in.
168
-    * @param string $content
169
-    * @param string $contentType
170
-    */
164
+    /**
165
+     * Adds arbitrary content.
166
+     * 
167
+     * @param string $varName The variable name to send the content in.
168
+     * @param string $content
169
+     * @param string $contentType
170
+     */
171 171
     public function addContent(string $varName, string $content, string $contentType) : RequestHelper
172 172
     {
173 173
         $this->boundaries->addContent($varName, $content, $contentType);
@@ -175,13 +175,13 @@  discard block
 block discarded – undo
175 175
         return $this;
176 176
     }
177 177
 
178
-   /**
179
-    * Adds a variable to be sent with the request. If it
180
-    * already exists, its value is overwritten.
181
-    *
182
-    * @param string $name
183
-    * @param string $value
184
-    */
178
+    /**
179
+     * Adds a variable to be sent with the request. If it
180
+     * already exists, its value is overwritten.
181
+     *
182
+     * @param string $name
183
+     * @param string $value
184
+     */
185 185
     public function addVariable(string $name, string $value) : RequestHelper
186 186
     {
187 187
         $this->boundaries->addVariable($name, $value);
@@ -189,13 +189,13 @@  discard block
 block discarded – undo
189 189
         return $this;
190 190
     }
191 191
     
192
-   /**
193
-    * Sets an HTTP header to include in the request.
194
-    * 
195
-    * @param string $name
196
-    * @param string $value
197
-    * @return RequestHelper
198
-    */
192
+    /**
193
+     * Sets an HTTP header to include in the request.
194
+     * 
195
+     * @param string $name
196
+     * @param string $value
197
+     * @return RequestHelper
198
+     */
199 199
     public function setHeader(string $name, string $value) : RequestHelper
200 200
     {
201 201
         $this->headers[$name] = $value;
@@ -203,36 +203,36 @@  discard block
 block discarded – undo
203 203
         return $this;
204 204
     }
205 205
     
206
-   /**
207
-    * Disables SSL certificate checking.
208
-    * 
209
-    * @return RequestHelper
210
-    */
206
+    /**
207
+     * Disables SSL certificate checking.
208
+     * 
209
+     * @return RequestHelper
210
+     */
211 211
     public function disableSSLChecks() : RequestHelper
212 212
     {
213 213
         $this->verifySSL = false;
214 214
         return $this;
215 215
     }
216 216
    
217
-   /**
218
-    * @var integer
219
-    */
217
+    /**
218
+     * @var integer
219
+     */
220 220
     protected $contentLength = 0;
221 221
 
222
-   /**
223
-    * Sends the POST request to the destination, and returns
224
-    * the response text.
225
-    *
226
-    * The response object is stored internally, so after calling
227
-    * this method it may be retrieved at any moment using the
228
-    * {@link getResponse()} method.
229
-    *
230
-    * @return string
231
-    * @see RequestHelper::getResponse()
232
-    * @throws RequestHelper_Exception
233
-    * 
234
-    * @see RequestHelper::ERROR_REQUEST_FAILED
235
-    */
222
+    /**
223
+     * Sends the POST request to the destination, and returns
224
+     * the response text.
225
+     *
226
+     * The response object is stored internally, so after calling
227
+     * this method it may be retrieved at any moment using the
228
+     * {@link getResponse()} method.
229
+     *
230
+     * @return string
231
+     * @see RequestHelper::getResponse()
232
+     * @throws RequestHelper_Exception
233
+     * 
234
+     * @see RequestHelper::ERROR_REQUEST_FAILED
235
+     */
236 236
     public function send() : string
237 237
     {
238 238
         $info = parseURL($this->destination);
@@ -272,26 +272,26 @@  discard block
 block discarded – undo
272 272
         return $this->response->getResponseBody();
273 273
     }
274 274
     
275
-   /**
276
-    * Retrieves the request's body content. This is an alias
277
-    * for {@see RequestHelper::getMimeBody()}.
278
-    * 
279
-    * @return string
280
-    * @see RequestHelper::getMimeBody()
281
-    */
275
+    /**
276
+     * Retrieves the request's body content. This is an alias
277
+     * for {@see RequestHelper::getMimeBody()}.
278
+     * 
279
+     * @return string
280
+     * @see RequestHelper::getMimeBody()
281
+     */
282 282
     public function getBody() : string
283 283
     {
284 284
         return $this->getMimeBody();
285 285
     }
286 286
     
287
-   /**
288
-    * Creates a new CURL resource configured according to the
289
-    * request's settings.
290
-    * 
291
-    * @param URLInfo $url
292
-    * @throws RequestHelper_Exception
293
-    * @return resource
294
-    */
287
+    /**
288
+     * Creates a new CURL resource configured according to the
289
+     * request's settings.
290
+     * 
291
+     * @param URLInfo $url
292
+     * @throws RequestHelper_Exception
293
+     * @return resource
294
+     */
295 295
     protected function createCURL(URLInfo $url)
296 296
     {
297 297
         $ch = curl_init();
@@ -339,10 +339,10 @@  discard block
 block discarded – undo
339 339
         return $ch;
340 340
     }
341 341
     
342
-   /**
343
-    * @param resource $ch
344
-    * @return bool Whether logging is enabled.
345
-    */
342
+    /**
343
+     * @param resource $ch
344
+     * @return bool Whether logging is enabled.
345
+     */
346 346
     protected function configureLogging($ch) : bool
347 347
     {
348 348
         if(empty($this->logfile))
@@ -369,13 +369,13 @@  discard block
 block discarded – undo
369 369
         return true;
370 370
     }
371 371
 
372
-   /**
373
-    * Compiles the associative headers array into
374
-    * the format understood by CURL, namely an indexed
375
-    * array with one header string per entry.
376
-    * 
377
-    * @return array
378
-    */
372
+    /**
373
+     * Compiles the associative headers array into
374
+     * the format understood by CURL, namely an indexed
375
+     * array with one header string per entry.
376
+     * 
377
+     * @return array
378
+     */
379 379
     protected function renderHeaders() : array
380 380
     {
381 381
         $result = array();
@@ -389,12 +389,12 @@  discard block
 block discarded – undo
389 389
         return $result;
390 390
     }
391 391
     
392
-   /**
393
-    * Retrieves the raw response header, in the form of an indexed
394
-    * array containing all response header lines.
395
-    * 
396
-    * @return array
397
-    */
392
+    /**
393
+     * Retrieves the raw response header, in the form of an indexed
394
+     * array containing all response header lines.
395
+     * 
396
+     * @return array
397
+     */
398 398
     public function getResponseHeader() : array
399 399
     {
400 400
         $response = $this->getResponse();
@@ -406,33 +406,33 @@  discard block
 block discarded – undo
406 406
         return array();
407 407
     }
408 408
 
409
-   /**
410
-    * After calling the {@link send()} method, this may be used to
411
-    * retrieve the response text from the POST request.
412
-    *
413
-    * @return RequestHelper_Response|NULL
414
-    */
409
+    /**
410
+     * After calling the {@link send()} method, this may be used to
411
+     * retrieve the response text from the POST request.
412
+     *
413
+     * @return RequestHelper_Response|NULL
414
+     */
415 415
     public function getResponse() : ?RequestHelper_Response
416 416
     {
417 417
         return $this->response;
418 418
     }
419 419
     
420
-   /**
421
-    * Retrieves all headers set until now.
422
-    * 
423
-    * @return array<string,string>
424
-    */
420
+    /**
421
+     * Retrieves all headers set until now.
422
+     * 
423
+     * @return array<string,string>
424
+     */
425 425
     public function getHeaders() : array
426 426
     {
427 427
         return $this->headers;
428 428
     }
429 429
     
430
-   /**
431
-    * Retrieves the value of a header by its name.
432
-    * 
433
-    * @param string $name
434
-    * @return string The header value, or an empty string if not set.
435
-    */
430
+    /**
431
+     * Retrieves the value of a header by its name.
432
+     * 
433
+     * @param string $name
434
+     * @return string The header value, or an empty string if not set.
435
+     */
436 436
     public function getHeader(string $name) : string
437 437
     {
438 438
         if(isset($this->headers[$name]))
Please login to merge, or discard this patch.
src/StringBuilder/Interface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,17 +25,17 @@
 block discarded – undo
25 25
      * 
26 26
      * @return string
27 27
      */
28
-     function render() : string;
28
+        function render() : string;
29 29
      
30 30
     /**
31 31
      * Converts the string builder to a string.
32 32
      * 
33 33
      * @return string
34 34
      */
35
-     function __toString();
35
+        function __toString();
36 36
      
37 37
     /**
38 38
      * Renders the string and echos it.
39 39
      */
40
-     function display() : void;
40
+        function display() : void;
41 41
 }
Please login to merge, or discard this patch.
src/StringBuilder.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $string = strval($string);
70 70
         
71
-        if(!empty($string)) 
71
+        if (!empty($string)) 
72 72
         {
73 73
             $this->strings[] = $string;
74 74
         }
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     {
148 148
         array_unshift($arguments, $format);
149 149
         
150
-        if(!class_exists('\AppLocalize\Localization'))
150
+        if (!class_exists('\AppLocalize\Localization'))
151 151
         {
152 152
             return $this->sf(...$arguments);
153 153
         }
@@ -288,10 +288,10 @@  discard block
 block discarded – undo
288 288
     * @param bool $newTab
289 289
     * @return $this
290 290
     */
291
-    public function link(string $label, string $url, bool $newTab=false) : StringBuilder
291
+    public function link(string $label, string $url, bool $newTab = false) : StringBuilder
292 292
     {
293 293
         $target = '';
294
-        if($newTab) {
294
+        if ($newTab) {
295 295
             $target = ' target="_blank"';
296 296
         }
297 297
        
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
     */
338 338
     protected function spanned($string, $classes) : StringBuilder
339 339
     {
340
-        if(!is_array($classes)) 
340
+        if (!is_array($classes)) 
341 341
         {
342 342
             $classes = array(strval($classes));
343 343
         }
Please login to merge, or discard this patch.
Indentation   +145 added lines, -145 removed lines patch added patch discarded remove patch
@@ -33,24 +33,24 @@  discard block
 block discarded – undo
33 33
  */
34 34
 class StringBuilder implements StringBuilder_Interface
35 35
 {
36
-   /**
37
-    * @var string
38
-    */
36
+    /**
37
+     * @var string
38
+     */
39 39
     protected $separator = ' ';
40 40
 
41
-   /**
42
-    * @var string[]
43
-    */
41
+    /**
42
+     * @var string[]
43
+     */
44 44
     protected $strings = array();
45 45
 
46
-   /**
47
-    * @var string
48
-    */
46
+    /**
47
+     * @var string
48
+     */
49 49
     protected $mode = 'html';
50 50
 
51
-   /**
52
-    * @var string
53
-    */
51
+    /**
52
+     * @var string
53
+     */
54 54
     protected $noSpace = '§!§';
55 55
     
56 56
     public function __construct()
@@ -58,12 +58,12 @@  discard block
 block discarded – undo
58 58
         
59 59
     }
60 60
     
61
-   /**
62
-    * Adds a subject as a string. Is ignored if empty.
63
-    * 
64
-    * @param string|number|StringBuilder_Interface $string
65
-    * @return $this
66
-    */
61
+    /**
62
+     * Adds a subject as a string. Is ignored if empty.
63
+     * 
64
+     * @param string|number|StringBuilder_Interface $string
65
+     * @return $this
66
+     */
67 67
     public function add($string) : StringBuilder
68 68
     {
69 69
         $string = strval($string);
@@ -76,57 +76,57 @@  discard block
 block discarded – undo
76 76
         return $this;
77 77
     }
78 78
     
79
-   /**
80
-    * Adds a string without appending an automatic space.
81
-    * 
82
-    * @param string|number|StringBuilder_Interface $string
83
-    * @return $this
84
-    */
79
+    /**
80
+     * Adds a string without appending an automatic space.
81
+     * 
82
+     * @param string|number|StringBuilder_Interface $string
83
+     * @return $this
84
+     */
85 85
     public function nospace($string) : StringBuilder
86 86
     {
87 87
         return $this->add($this->noSpace.strval($string));
88 88
     }
89 89
     
90
-   /**
91
-    * Adds raw HTML code. Does not add an automatic space.
92
-    * 
93
-    * @param string|number|StringBuilder_Interface $html
94
-    * @return $this
95
-    */
90
+    /**
91
+     * Adds raw HTML code. Does not add an automatic space.
92
+     * 
93
+     * @param string|number|StringBuilder_Interface $html
94
+     * @return $this
95
+     */
96 96
     public function html($html) : StringBuilder
97 97
     {
98 98
         return $this->nospace($html);
99 99
     }
100 100
     
101
-   /**
102
-    * Adds an unordered list with the specified items.
103
-    * 
104
-    * @param array<int,string|number|StringBuilder_Interface> $items
105
-    * @return $this
106
-    */
101
+    /**
102
+     * Adds an unordered list with the specified items.
103
+     * 
104
+     * @param array<int,string|number|StringBuilder_Interface> $items
105
+     * @return $this
106
+     */
107 107
     public function ul(array $items) : StringBuilder
108 108
     {
109 109
         return $this->list('ul', $items);
110 110
     }
111 111
     
112
-   /**
113
-    * Adds an ordered list with the specified items.
114
-    * 
115
-    * @param array<int,string|number|StringBuilder_Interface> $items
116
-    * @return $this
117
-    */
112
+    /**
113
+     * Adds an ordered list with the specified items.
114
+     * 
115
+     * @param array<int,string|number|StringBuilder_Interface> $items
116
+     * @return $this
117
+     */
118 118
     public function ol(array $items) : StringBuilder
119 119
     {
120 120
         return $this->list('ol', $items);
121 121
     }
122 122
     
123
-   /**
124
-    * Creates a list tag with the items list.
125
-    * 
126
-    * @param string $type The list type, `ol` or `ul`.
127
-    * @param array<int,string|number|StringBuilder_Interface> $items
128
-    * @return $this
129
-    */
123
+    /**
124
+     * Creates a list tag with the items list.
125
+     * 
126
+     * @param string $type The list type, `ol` or `ul`.
127
+     * @param array<int,string|number|StringBuilder_Interface> $items
128
+     * @return $this
129
+     */
130 130
     protected function list(string $type, array $items) : StringBuilder
131 131
     {
132 132
         return $this->html(sprintf(
@@ -136,13 +136,13 @@  discard block
 block discarded – undo
136 136
         ));
137 137
     }
138 138
     
139
-   /**
140
-    * Add a translated string.
141
-    * 
142
-    * @param string $format The native string to translate.
143
-    * @param array<int,mixed> $arguments The variables to inject into the translated string, if any.
144
-    * @return $this
145
-    */
139
+    /**
140
+     * Add a translated string.
141
+     * 
142
+     * @param string $format The native string to translate.
143
+     * @param array<int,mixed> $arguments The variables to inject into the translated string, if any.
144
+     * @return $this
145
+     */
146 146
     public function t(string $format, ...$arguments) : StringBuilder
147 147
     {
148 148
         array_unshift($arguments, $format);
@@ -158,47 +158,47 @@  discard block
 block discarded – undo
158 158
         ));
159 159
     }
160 160
     
161
-   /**
162
-    * Adds a "5 months ago" age since the specified date.
163
-    * 
164
-    * @param DateTime $since
165
-    * @return $this
166
-    */
161
+    /**
162
+     * Adds a "5 months ago" age since the specified date.
163
+     * 
164
+     * @param DateTime $since
165
+     * @return $this
166
+     */
167 167
     public function age(DateTime $since) : StringBuilder
168 168
     {
169 169
         return $this->add(ConvertHelper::duration2string($since));
170 170
     }
171 171
     
172
-   /**
173
-    * Adds HTML quotes around the string.
174
-    * 
175
-    * @param string|number|StringBuilder_Interface $string
176
-    * @return $this
177
-    */
172
+    /**
173
+     * Adds HTML quotes around the string.
174
+     * 
175
+     * @param string|number|StringBuilder_Interface $string
176
+     * @return $this
177
+     */
178 178
     public function quote($string)
179 179
     {
180 180
         return $this->sf('&quot;%s&quot;', strval($string));
181 181
     }
182 182
     
183
-   /**
184
-    * Adds a text that is meant as a reference to an UI element,
185
-    * like a menu item, button, etc.
186
-    * 
187
-    * @param string|number|StringBuilder_Interface $string 
188
-    * @return $this
189
-    */
183
+    /**
184
+     * Adds a text that is meant as a reference to an UI element,
185
+     * like a menu item, button, etc.
186
+     * 
187
+     * @param string|number|StringBuilder_Interface $string 
188
+     * @return $this
189
+     */
190 190
     public function reference($string) : StringBuilder
191 191
     {
192 192
         return $this->sf('"%s"', $string);
193 193
     }
194 194
 
195
-   /**
196
-    * Add a string using the `sprintf` method.
197
-    * 
198
-    * @param string $format The format string
199
-    * @param string|number|StringBuilder_Interface ...$arguments The variables to inject
200
-    * @return $this
201
-    */
195
+    /**
196
+     * Add a string using the `sprintf` method.
197
+     * 
198
+     * @param string $format The format string
199
+     * @param string|number|StringBuilder_Interface ...$arguments The variables to inject
200
+     * @return $this
201
+     */
202 202
     public function sf(string $format, ...$arguments) : StringBuilder
203 203
     {
204 204
         array_unshift($arguments, $format);
@@ -206,12 +206,12 @@  discard block
 block discarded – undo
206 206
         return $this->add(call_user_func_array('sprintf', $arguments));
207 207
     }
208 208
     
209
-   /**
210
-    * Adds a bold string.
211
-    * 
212
-    * @param string|number|StringBuilder_Interface $string
213
-    * @return $this
214
-    */
209
+    /**
210
+     * Adds a bold string.
211
+     * 
212
+     * @param string|number|StringBuilder_Interface $string
213
+     * @return $this
214
+     */
215 215
     public function bold($string) : StringBuilder
216 216
     {
217 217
         return $this->sf(
@@ -220,74 +220,74 @@  discard block
 block discarded – undo
220 220
         );
221 221
     }
222 222
     
223
-   /**
224
-    * Adds a HTML `br` tag.
225
-    * 
226
-    * @return $this
227
-    */
223
+    /**
224
+     * Adds a HTML `br` tag.
225
+     * 
226
+     * @return $this
227
+     */
228 228
     public function nl() : StringBuilder
229 229
     {
230 230
         return $this->html('<br>');
231 231
     }
232 232
     
233
-   /**
234
-    * Adds the current time, in the format <code>H:i:s</code>.
235
-    * 
236
-    * @return $this
237
-    */
233
+    /**
234
+     * Adds the current time, in the format <code>H:i:s</code>.
235
+     * 
236
+     * @return $this
237
+     */
238 238
     public function time() : StringBuilder
239 239
     {
240 240
         return $this->add(date('H:i:s'));
241 241
     }
242 242
     
243
-   /**
244
-    * Adds the "Note:" text.
245
-    * 
246
-    * @return $this
247
-    */
243
+    /**
244
+     * Adds the "Note:" text.
245
+     * 
246
+     * @return $this
247
+     */
248 248
     public function note() : StringBuilder
249 249
     {
250 250
         return $this->t('Note:');
251 251
     }
252 252
     
253
-   /**
254
-    * Like `note()`, but as bold text.
255
-    * 
256
-    * @return $this
257
-    */
253
+    /**
254
+     * Like `note()`, but as bold text.
255
+     * 
256
+     * @return $this
257
+     */
258 258
     public function noteBold() : StringBuilder
259 259
     {
260 260
         return $this->bold(sb()->note());
261 261
     }
262 262
     
263
-   /**
264
-    * Adds the "Hint:" text.
265
-    * 
266
-    * @return $this
267
-    */
263
+    /**
264
+     * Adds the "Hint:" text.
265
+     * 
266
+     * @return $this
267
+     */
268 268
     public function hint() : StringBuilder
269 269
     {
270 270
         return $this->t('Hint:');
271 271
     }
272 272
     
273
-   /**
274
-    * Adds two linebreaks.
275
-    * 
276
-    * @return $this
277
-    */
273
+    /**
274
+     * Adds two linebreaks.
275
+     * 
276
+     * @return $this
277
+     */
278 278
     public function para() : StringBuilder
279 279
     {
280 280
         return $this->nl()->nl();
281 281
     }
282 282
     
283
-   /**
284
-    * Adds an anchor HTML tag.
285
-    * 
286
-    * @param string $label
287
-    * @param string $url
288
-    * @param bool $newTab
289
-    * @return $this
290
-    */
283
+    /**
284
+     * Adds an anchor HTML tag.
285
+     * 
286
+     * @param string $label
287
+     * @param string $url
288
+     * @param bool $newTab
289
+     * @return $this
290
+     */
291 291
     public function link(string $label, string $url, bool $newTab=false) : StringBuilder
292 292
     {
293 293
         $target = '';
@@ -303,12 +303,12 @@  discard block
 block discarded – undo
303 303
         );
304 304
     }
305 305
     
306
-   /**
307
-    * Wraps the string in a `code` tag.
308
-    * 
309
-    * @param string|number|StringBuilder_Interface $string
310
-    * @return $this
311
-    */
306
+    /**
307
+     * Wraps the string in a `code` tag.
308
+     * 
309
+     * @param string|number|StringBuilder_Interface $string
310
+     * @return $this
311
+     */
312 312
     public function code($string) : StringBuilder
313 313
     {
314 314
         return $this->sf(
@@ -317,24 +317,24 @@  discard block
 block discarded – undo
317 317
         );
318 318
     }
319 319
     
320
-   /**
321
-    * Wraps the string in a `pre` tag.
322
-    * 
323
-    * @param string|number|StringBuilder_Interface $string
324
-    * @return $this
325
-    */
320
+    /**
321
+     * Wraps the string in a `pre` tag.
322
+     * 
323
+     * @param string|number|StringBuilder_Interface $string
324
+     * @return $this
325
+     */
326 326
     public function pre($string) : StringBuilder
327 327
     {
328 328
         return $this->sf('<pre>%s</pre>', strval($string));
329 329
     }
330 330
     
331
-   /**
332
-    * Wraps the text in a `span` tag with the specified classes.
333
-    * 
334
-    * @param string|number|StringBuilder_Interface $string
335
-    * @param string|string[] $classes
336
-    * @return $this
337
-    */
331
+    /**
332
+     * Wraps the text in a `span` tag with the specified classes.
333
+     * 
334
+     * @param string|number|StringBuilder_Interface $string
335
+     * @param string|string[] $classes
336
+     * @return $this
337
+     */
338 338
     protected function spanned($string, $classes) : StringBuilder
339 339
     {
340 340
         if(!is_array($classes)) 
Please login to merge, or discard this patch.
src/XMLHelper.php 2 patches
Indentation   +172 added lines, -172 removed lines patch added patch discarded remove patch
@@ -28,9 +28,9 @@  discard block
 block discarded – undo
28 28
 {
29 29
     const ERROR_CANNOT_APPEND_FRAGMENT = 491001; 
30 30
 
31
-   /**
32
-    * @var boolean
33
-    */
31
+    /**
32
+     * @var boolean
33
+     */
34 34
     private static $simulation = false;
35 35
 
36 36
     /**
@@ -38,11 +38,11 @@  discard block
 block discarded – undo
38 38
      */
39 39
     private $dom;
40 40
     
41
-   /**
42
-    * Creates a new XMLHelper instance.
43
-    * 
44
-    * @return XMLHelper
45
-    */
41
+    /**
42
+     * Creates a new XMLHelper instance.
43
+     * 
44
+     * @return XMLHelper
45
+     */
46 46
     public static function create() : XMLHelper
47 47
     {
48 48
         $dom = new DOMDocument('1.0', 'UTF-8');
@@ -51,72 +51,72 @@  discard block
 block discarded – undo
51 51
         return new XMLHelper($dom);
52 52
     }
53 53
     
54
-   /**
55
-    * Creates a converter instance from an XML file.
56
-    * @param string $xmlFile
57
-    * @return XMLHelper_Converter
58
-    */
54
+    /**
55
+     * Creates a converter instance from an XML file.
56
+     * @param string $xmlFile
57
+     * @return XMLHelper_Converter
58
+     */
59 59
     public static function convertFile(string $xmlFile) : XMLHelper_Converter
60 60
     {
61 61
         return XMLHelper_Converter::fromFile($xmlFile);
62 62
     }
63 63
     
64
-   /**
65
-    * Creates a converter from an XML string.
66
-    * @param string $xmlString
67
-    * @return XMLHelper_Converter
68
-    */
64
+    /**
65
+     * Creates a converter from an XML string.
66
+     * @param string $xmlString
67
+     * @return XMLHelper_Converter
68
+     */
69 69
     public static function convertString(string $xmlString) : XMLHelper_Converter
70 70
     {
71 71
         return XMLHelper_Converter::fromString($xmlString);
72 72
     }
73 73
 
74
-   /**
75
-    * Creates a converter from a SimpleXMLElement instance.
76
-    * @param SimpleXMLElement $element
77
-    * @return XMLHelper_Converter
78
-    */
74
+    /**
75
+     * Creates a converter from a SimpleXMLElement instance.
76
+     * @param SimpleXMLElement $element
77
+     * @return XMLHelper_Converter
78
+     */
79 79
     public static function convertElement(SimpleXMLElement $element) : XMLHelper_Converter
80 80
     {
81 81
         return XMLHelper_Converter::fromElement($element);
82 82
     }
83 83
    
84
-   /**
85
-    * Creates a converter from a DOMElement instance.
86
-    * @param DOMElement $element
87
-    * @return XMLHelper_Converter
88
-    */
84
+    /**
85
+     * Creates a converter from a DOMElement instance.
86
+     * @param DOMElement $element
87
+     * @return XMLHelper_Converter
88
+     */
89 89
     public static function convertDOMElement(DOMElement $element) : XMLHelper_Converter
90 90
     {
91 91
         return XMLHelper_Converter::fromDOMElement($element);
92 92
     }
93 93
 
94
-   /**
95
-    * Creates a new helper using an existing DOMDocument object.
96
-    * @param DOMDocument $dom
97
-    */
94
+    /**
95
+     * Creates a new helper using an existing DOMDocument object.
96
+     * @param DOMDocument $dom
97
+     */
98 98
     public function __construct(DOMDocument $dom)
99 99
     {
100 100
         $this->dom = $dom;
101 101
     }
102 102
 
103
-   /**
104
-    * @return DOMDocument
105
-    */
103
+    /**
104
+     * @return DOMDocument
105
+     */
106 106
     public function getDOM() : DOMDocument
107 107
     {
108 108
         return $this->dom;
109 109
     }
110 110
 
111
-   /**
112
-    * Adds an attribute to an existing tag with
113
-    * the specified value.
114
-    *
115
-    * @param DOMNode $parent
116
-    * @param string $name
117
-    * @param mixed $value
118
-    * @return DOMNode
119
-    */
111
+    /**
112
+     * Adds an attribute to an existing tag with
113
+     * the specified value.
114
+     *
115
+     * @param DOMNode $parent
116
+     * @param string $name
117
+     * @param mixed $value
118
+     * @return DOMNode
119
+     */
120 120
     public function addAttribute(DOMNode $parent, string $name, $value)
121 121
     {
122 122
         $node = $this->dom->createAttribute($name);
@@ -126,12 +126,12 @@  discard block
 block discarded – undo
126 126
         return $parent->appendChild($node);
127 127
     }
128 128
 
129
-   /**
130
-    * Adds several attributes to the target node.
131
-    * 
132
-    * @param DOMNode $parent
133
-    * @param array<string,mixed> $attributes
134
-    */
129
+    /**
130
+     * Adds several attributes to the target node.
131
+     * 
132
+     * @param DOMNode $parent
133
+     * @param array<string,mixed> $attributes
134
+     */
135 135
     public function addAttributes(DOMNode $parent, array $attributes) : void
136 136
     {
137 137
         foreach ($attributes as $name => $value) {
@@ -139,14 +139,14 @@  discard block
 block discarded – undo
139 139
         }
140 140
     }
141 141
 
142
-   /**
143
-    * Adds a tag without content.
144
-    *
145
-    * @param DOMNode $parent
146
-    * @param string $name
147
-    * @param integer $indent
148
-    * @return DOMNode
149
-    */
142
+    /**
143
+     * Adds a tag without content.
144
+     *
145
+     * @param DOMNode $parent
146
+     * @param string $name
147
+     * @param integer $indent
148
+     * @return DOMNode
149
+     */
150 150
     public function addTag(DOMNode $parent, string $name, int $indent = 0) : DOMNode
151 151
     {
152 152
         if ($indent > 0) {
@@ -168,17 +168,17 @@  discard block
 block discarded – undo
168 168
         $parent->appendChild($this->dom->createTextNode(str_repeat("\t", $amount)));
169 169
     }
170 170
 
171
-   /**
172
-    * Adds a tag with textual content, like:
173
-    *
174
-    * <tagname>text</tagname>
175
-    *
176
-    * @param DOMNode $parent
177
-    * @param string $name
178
-    * @param string $text
179
-    * @param integer $indent
180
-    * @return DOMNode
181
-    */
171
+    /**
172
+     * Adds a tag with textual content, like:
173
+     *
174
+     * <tagname>text</tagname>
175
+     *
176
+     * @param DOMNode $parent
177
+     * @param string $name
178
+     * @param string $text
179
+     * @param integer $indent
180
+     * @return DOMNode
181
+     */
182 182
     public function addTextTag(DOMNode $parent, string $name, string $text, int $indent = 0) : DOMNode
183 183
     {
184 184
         if ($indent > 0) {
@@ -192,19 +192,19 @@  discard block
 block discarded – undo
192 192
         return $parent->appendChild($tag);
193 193
     }
194 194
 
195
-   /**
196
-    * Adds a tag with textual content, like:
197
-    *
198
-    * <tagname>text</tagname>
199
-    *
200
-    * and removes <p> tags
201
-    *
202
-    * @param DOMNode $parent
203
-    * @param string $name
204
-    * @param string $text
205
-    * @param integer $indent
206
-    * @return DOMNode
207
-    */
195
+    /**
196
+     * Adds a tag with textual content, like:
197
+     *
198
+     * <tagname>text</tagname>
199
+     *
200
+     * and removes <p> tags
201
+     *
202
+     * @param DOMNode $parent
203
+     * @param string $name
204
+     * @param string $text
205
+     * @param integer $indent
206
+     * @return DOMNode
207
+     */
208 208
     public function addEscapedTag(DOMNode $parent, string $name, string $text, int $indent = 0)
209 209
     {
210 210
         if ($indent > 0) {
@@ -220,19 +220,19 @@  discard block
 block discarded – undo
220 220
         return $parent->appendChild($tag);
221 221
     }
222 222
 
223
-   /**
224
-    * Adds a tag with HTML content, like:
225
-    *
226
-    * <tagname><i>text</i></tagname>
227
-    *
228
-    * Tags will not be escaped.
229
-    *
230
-    * @param DOMNode $parent
231
-    * @param string $name
232
-    * @param string $text
233
-    * @param integer $indent
234
-    * @return DOMNode
235
-    */
223
+    /**
224
+     * Adds a tag with HTML content, like:
225
+     *
226
+     * <tagname><i>text</i></tagname>
227
+     *
228
+     * Tags will not be escaped.
229
+     *
230
+     * @param DOMNode $parent
231
+     * @param string $name
232
+     * @param string $text
233
+     * @param integer $indent
234
+     * @return DOMNode
235
+     */
236 236
     public function addFragmentTag(DOMNode $parent, string $name, string $text, int $indent = 0)
237 237
     {
238 238
         if ($indent > 0) {
@@ -260,16 +260,16 @@  discard block
 block discarded – undo
260 260
         return $parent->appendChild($tag);
261 261
     }
262 262
 
263
-   /**
264
-    * Adds a tag with CDATA content, like:
265
-    *
266
-    * <tagname><![CDATA[value]]></tagname>
267
-    *
268
-    * @param DOMNode $parent
269
-    * @param string $name
270
-    * @param string $content
271
-    * @return DOMNode
272
-    */
263
+    /**
264
+     * Adds a tag with CDATA content, like:
265
+     *
266
+     * <tagname><![CDATA[value]]></tagname>
267
+     *
268
+     * @param DOMNode $parent
269
+     * @param string $name
270
+     * @param string $content
271
+     * @return DOMNode
272
+     */
273 273
     public function addCDATATag(DOMNode $parent, string $name, string $content) : DOMNode
274 274
     {
275 275
         $tag = $this->dom->createElement($name);
@@ -279,12 +279,12 @@  discard block
 block discarded – undo
279 279
         return $parent->appendChild($tag);
280 280
     }
281 281
 
282
-   /**
283
-    * Creates the root element of the document.
284
-    * @param string $name
285
-    * @param array<string,mixed> $attributes
286
-    * @return DOMNode
287
-    */
282
+    /**
283
+     * Creates the root element of the document.
284
+     * @param string $name
285
+     * @param array<string,mixed> $attributes
286
+     * @return DOMNode
287
+     */
288 288
     public function createRoot(string $name, array $attributes=array())
289 289
     {
290 290
         $root = $this->dom->appendChild($this->dom->createElement($name));
@@ -292,12 +292,12 @@  discard block
 block discarded – undo
292 292
         return $root;
293 293
     }
294 294
 
295
-   /**
296
-    * Escaped the string for use in XML.
297
-    * 
298
-    * @param string $string
299
-    * @return string
300
-    */
295
+    /**
296
+     * Escaped the string for use in XML.
297
+     * 
298
+     * @param string $string
299
+     * @return string
300
+     */
301 301
     public function escape(string $string) : string
302 302
     {
303 303
         $string = preg_replace('#<p>(.*)</p>#isUm', '$1', $string);
@@ -317,18 +317,18 @@  discard block
 block discarded – undo
317 317
         return $string;
318 318
     }
319 319
 
320
-   /**
321
-    * Sends the specified XML string to the browser with
322
-    * the correct headers to trigger a download of the XML
323
-    * to a local file.
324
-    * 
325
-    * NOTE: Ensure calling exit after this is done, and to
326
-    * not send additional content, which would corrupt the 
327
-    * download.
328
-    *
329
-    * @param string $xml
330
-    * @param string $filename
331
-    */
320
+    /**
321
+     * Sends the specified XML string to the browser with
322
+     * the correct headers to trigger a download of the XML
323
+     * to a local file.
324
+     * 
325
+     * NOTE: Ensure calling exit after this is done, and to
326
+     * not send additional content, which would corrupt the 
327
+     * download.
328
+     *
329
+     * @param string $xml
330
+     * @param string $filename
331
+     */
332 332
     public static function downloadXML(string $xml, string $filename = 'download.xml') : void
333 333
     {
334 334
         if(!headers_sent() && !self::$simulation) 
@@ -339,12 +339,12 @@  discard block
 block discarded – undo
339 339
         echo $xml;
340 340
     }
341 341
 
342
-   /**
343
-    * Sends the specified XML string to the browser with
344
-    * the correct headers and terminates the request.
345
-    *
346
-    * @param string $xml
347
-    */
342
+    /**
343
+     * Sends the specified XML string to the browser with
344
+     * the correct headers and terminates the request.
345
+     *
346
+     * @param string $xml
347
+     */
348 348
     public static function displayXML(string $xml) : void
349 349
     {
350 350
         if(!headers_sent() && !self::$simulation) 
@@ -411,23 +411,23 @@  discard block
 block discarded – undo
411 411
         return $xml->saveXML();
412 412
     }
413 413
 
414
-   /**
415
-    * Creates XML markup to describe an application error
416
-    * when using XML services. Creates XML with the
417
-    * following structure:
418
-    *
419
-    * <error>
420
-    *     <id>99</id>
421
-    *     <message>Full error message text</message>
422
-    *     <title>Short error label</title>
423
-    * </error>
424
-    *
425
-    * @param string|number $code
426
-    * @param string $message
427
-    * @param string $title
428
-    * @param array<string,string> $customInfo
429
-    * @return string
430
-    */
414
+    /**
415
+     * Creates XML markup to describe an application error
416
+     * when using XML services. Creates XML with the
417
+     * following structure:
418
+     *
419
+     * <error>
420
+     *     <id>99</id>
421
+     *     <message>Full error message text</message>
422
+     *     <title>Short error label</title>
423
+     * </error>
424
+     *
425
+     * @param string|number $code
426
+     * @param string $message
427
+     * @param string $title
428
+     * @param array<string,string> $customInfo
429
+     * @return string
430
+     */
431 431
     public static function buildErrorXML($code, string $message, string $title, array $customInfo=array())
432 432
     {
433 433
         $xml = new DOMDocument('1.0', 'UTF-8');
@@ -460,31 +460,31 @@  discard block
 block discarded – undo
460 460
         return $this->dom->saveXML();
461 461
     }
462 462
     
463
-   /**
464
-    * Creates a new SimpleXML helper instance: this
465
-    * object is useful to work with loading XML strings
466
-    * and files with easy access to any errors that 
467
-    * may occurr, since the simplexml functions can be
468
-    * somewhat cryptic.
469
-    * 
470
-    * @return XMLHelper_SimpleXML
471
-    */
463
+    /**
464
+     * Creates a new SimpleXML helper instance: this
465
+     * object is useful to work with loading XML strings
466
+     * and files with easy access to any errors that 
467
+     * may occurr, since the simplexml functions can be
468
+     * somewhat cryptic.
469
+     * 
470
+     * @return XMLHelper_SimpleXML
471
+     */
472 472
     public static function createSimplexml() : XMLHelper_SimpleXML
473 473
     {
474 474
         return new XMLHelper_SimpleXML();
475 475
     }
476 476
     
477
-   /**
478
-    * Converts a string to valid XML: can be a text only string
479
-    * or an HTML string. Returns valid XML code.
480
-    * 
481
-    * NOTE: The string may contain custom tags, which are 
482
-    * preserved.
483
-    * 
484
-    * @param string $string
485
-    * @throws XMLHelper_Exception
486
-    * @return string
487
-    */
477
+    /**
478
+     * Converts a string to valid XML: can be a text only string
479
+     * or an HTML string. Returns valid XML code.
480
+     * 
481
+     * NOTE: The string may contain custom tags, which are 
482
+     * preserved.
483
+     * 
484
+     * @param string $string
485
+     * @throws XMLHelper_Exception
486
+     * @return string
487
+     */
488 488
     public static function string2xml(string $string) : string
489 489
     {
490 490
         return XMLHelper_HTMLLoader::loadFragment($string)->fragmentToXML();
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         if (!empty($text)) {
245 245
             $fragment = $this->dom->createDocumentFragment();
246
-            if(!@$fragment->appendXML($text)) {
246
+            if (!@$fragment->appendXML($text)) {
247 247
                 throw new XMLHelper_Exception(
248 248
                     'Cannot append XML fragment',
249 249
                     sprintf(
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
     * @param array<string,mixed> $attributes
286 286
     * @return DOMNode
287 287
     */
288
-    public function createRoot(string $name, array $attributes=array())
288
+    public function createRoot(string $name, array $attributes = array())
289 289
     {
290 290
         $root = $this->dom->appendChild($this->dom->createElement($name));
291 291
         $this->addAttributes($root, $attributes);
@@ -311,8 +311,8 @@  discard block
 block discarded – undo
311 311
         $string = str_replace('&lt;', 'LT_ESCAPE', $string);
312 312
         $string = str_replace('&gt;', 'GT_ESCAPE', $string);
313 313
 
314
-        $string = str_replace('&nbsp;',' ',  $string);
315
-        $string = str_replace('&','&amp;',  $string);
314
+        $string = str_replace('&nbsp;', ' ', $string);
315
+        $string = str_replace('&', '&amp;', $string);
316 316
 
317 317
         return $string;
318 318
     }
@@ -331,9 +331,9 @@  discard block
 block discarded – undo
331 331
     */
332 332
     public static function downloadXML(string $xml, string $filename = 'download.xml') : void
333 333
     {
334
-        if(!headers_sent() && !self::$simulation) 
334
+        if (!headers_sent() && !self::$simulation) 
335 335
         {
336
-            header('Content-Disposition: attachment; filename="' . $filename . '"');
336
+            header('Content-Disposition: attachment; filename="'.$filename.'"');
337 337
         }
338 338
         
339 339
         echo $xml;
@@ -347,12 +347,12 @@  discard block
 block discarded – undo
347 347
     */
348 348
     public static function displayXML(string $xml) : void
349 349
     {
350
-        if(!headers_sent() && !self::$simulation) 
350
+        if (!headers_sent() && !self::$simulation) 
351 351
         {
352 352
             header('Content-Type:text/xml; charset=utf-8');
353 353
         }
354 354
         
355
-        if(self::$simulation) 
355
+        if (self::$simulation) 
356 356
         {
357 357
             $xml = '<pre>'.htmlspecialchars($xml).'</pre>';
358 358
         }
@@ -370,16 +370,16 @@  discard block
 block discarded – undo
370 370
      * @param array<string,string> $customInfo Associative array with name => value pairs for custom tags to add to the output xml
371 371
      * @see buildErrorXML()
372 372
      */
373
-    public static function displayErrorXML($code, string $message, string $title, array $customInfo=array())
373
+    public static function displayErrorXML($code, string $message, string $title, array $customInfo = array())
374 374
     {
375
-        if(!headers_sent() && !self::$simulation) {
376
-            header('HTTP/1.1 400 Bad Request: ' . $title, true, 400);
375
+        if (!headers_sent() && !self::$simulation) {
376
+            header('HTTP/1.1 400 Bad Request: '.$title, true, 400);
377 377
         }
378 378
 
379 379
         self::displayXML(self::buildErrorXML($code, $message, $title, $customInfo));
380 380
     }
381 381
     
382
-    public static function setSimulation(bool $simulate=true) : void
382
+    public static function setSimulation(bool $simulate = true) : void
383 383
     {
384 384
         self::$simulation = $simulate;
385 385
     }
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
     * @param array<string,string> $customInfo
429 429
     * @return string
430 430
     */
431
-    public static function buildErrorXML($code, string $message, string $title, array $customInfo=array())
431
+    public static function buildErrorXML($code, string $message, string $title, array $customInfo = array())
432 432
     {
433 433
         $xml = new DOMDocument('1.0', 'UTF-8');
434 434
         $xml->formatOutput = true;
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
         $helper->addTextTag($root, 'title', $title);
443 443
         $helper->addTextTag($root, 'request_uri', $_SERVER['REQUEST_URI']);
444 444
         
445
-        foreach($customInfo as $name => $value) {
445
+        foreach ($customInfo as $name => $value) {
446 446
             $helper->addTextTag($root, $name, $value);
447 447
         }
448 448
 
Please login to merge, or discard this patch.
src/Highlighter.php 2 patches
Indentation   +70 added lines, -70 removed lines patch added patch discarded remove patch
@@ -41,71 +41,71 @@  discard block
 block discarded – undo
41 41
  */
42 42
 class Highlighter
43 43
 {
44
-   /**
45
-    * Creates a new GeSHi instance from a source code string.
46
-    * 
47
-    * @param string $sourceCode
48
-    * @param string $format
49
-    * @return GeSHi
50
-    */
44
+    /**
45
+     * Creates a new GeSHi instance from a source code string.
46
+     * 
47
+     * @param string $sourceCode
48
+     * @param string $format
49
+     * @return GeSHi
50
+     */
51 51
     public static function fromString(string $sourceCode, string $format) : GeSHi
52 52
     {
53 53
         return new GeSHi($sourceCode, $format);
54 54
     }
55 55
     
56
-   /**
57
-    * Creates a new GeSHi instance from the contents of a file.
58
-    * 
59
-    * @param string $path
60
-    * @param string $format
61
-    * @return GeSHi
62
-    */
56
+    /**
57
+     * Creates a new GeSHi instance from the contents of a file.
58
+     * 
59
+     * @param string $path
60
+     * @param string $format
61
+     * @return GeSHi
62
+     */
63 63
     public static function fromFile(string $path, string $format) : GeSHi
64 64
     {
65 65
         return self::fromString(FileHelper::readContents($path), $format);
66 66
     }
67 67
     
68
-   /**
69
-    * Parses and highlights the target string.
70
-    * 
71
-    * @param string $sourceCode
72
-    * @param string $format
73
-    * @return string
74
-    */
68
+    /**
69
+     * Parses and highlights the target string.
70
+     * 
71
+     * @param string $sourceCode
72
+     * @param string $format
73
+     * @return string
74
+     */
75 75
     public static function parseString(string $sourceCode, string $format) : string
76 76
     {
77 77
         return self::fromString($sourceCode, $format)->parse_code();
78 78
     }
79 79
     
80
-   /**
81
-    * Parses and highlights the contents of the target file.
82
-    * 
83
-    * @param string $path
84
-    * @param string $format
85
-    * @return string
86
-    */
80
+    /**
81
+     * Parses and highlights the contents of the target file.
82
+     * 
83
+     * @param string $path
84
+     * @param string $format
85
+     * @return string
86
+     */
87 87
     public static function parseFile(string $path, string $format) : string
88 88
     {
89 89
         return self::fromFile($path, $format)->parse_code();
90 90
     }
91 91
     
92
-   /**
93
-    * Adds HTML syntax highlighting to the specified SQL string.
94
-    *
95
-    * @param string $sql
96
-    * @return string
97
-    */
92
+    /**
93
+     * Adds HTML syntax highlighting to the specified SQL string.
94
+     *
95
+     * @param string $sql
96
+     * @return string
97
+     */
98 98
     public static function sql(string $sql) : string
99 99
     {
100 100
         return self::parseString($sql, 'sql');
101 101
     }
102 102
     
103
-   /**
104
-    * Adds HTML syntax highlighting to a JSON string, or a data array/object.
105
-    *
106
-    * @param array|object|string $subject A JSON string, or data array/object to convert to JSON to highlight.
107
-    * @return string
108
-    */
103
+    /**
104
+     * Adds HTML syntax highlighting to a JSON string, or a data array/object.
105
+     *
106
+     * @param array|object|string $subject A JSON string, or data array/object to convert to JSON to highlight.
107
+     * @return string
108
+     */
109 109
     public static function json($subject) : string
110 110
     {
111 111
         if(!is_string($subject))
@@ -118,13 +118,13 @@  discard block
 block discarded – undo
118 118
         return self::parseString($subject, 'javascript');
119 119
     }
120 120
     
121
-   /**
122
-    * Adds HTML syntax highlighting to the specified XML code.
123
-    *
124
-    * @param string $xml The XML to highlight.
125
-    * @param bool $formatSource Whether to format the source with indentation to make it readable.
126
-    * @return string
127
-    */
121
+    /**
122
+     * Adds HTML syntax highlighting to the specified XML code.
123
+     *
124
+     * @param string $xml The XML to highlight.
125
+     * @param bool $formatSource Whether to format the source with indentation to make it readable.
126
+     * @return string
127
+     */
128 128
     public static function xml(string $xml, bool $formatSource=false) : string
129 129
     {
130 130
         if($formatSource)
@@ -141,13 +141,13 @@  discard block
 block discarded – undo
141 141
         return self::parseString($xml, 'xml');
142 142
     }
143 143
     
144
-   /**
145
-    * Adds HTML syntax highlighting to the specified HTML code.
146
-    * 
147
-    * @param string $html
148
-    * @param bool $formatSource
149
-    * @return string
150
-    */
144
+    /**
145
+     * Adds HTML syntax highlighting to the specified HTML code.
146
+     * 
147
+     * @param string $html
148
+     * @param bool $formatSource
149
+     * @return string
150
+     */
151 151
     public static function html(string $html, bool $formatSource=false) : string
152 152
     {
153 153
         if($formatSource)
@@ -164,27 +164,27 @@  discard block
 block discarded – undo
164 164
         return self::parseString($html, 'xml');
165 165
     }
166 166
     
167
-   /**
168
-    * Adds HTML syntax highlighting to a bit of PHP code.
169
-    * 
170
-    * @param string $phpCode
171
-    * @return string
172
-    */
167
+    /**
168
+     * Adds HTML syntax highlighting to a bit of PHP code.
169
+     * 
170
+     * @param string $phpCode
171
+     * @return string
172
+     */
173 173
     public static function php(string $phpCode) : string
174 174
     {
175 175
         return self::parseString($phpCode, 'php');
176 176
     }
177 177
     
178
-   /**
179
-    * Adds HTML syntax highlighting to an URL.
180
-    *
181
-    * NOTE: Includes the necessary CSS styles. When
182
-    * highlighting several URLs in the same page,
183
-    * prefer using the `parseURL` function instead.
184
-    *
185
-    * @param string $url
186
-    * @return string
187
-    */
178
+    /**
179
+     * Adds HTML syntax highlighting to an URL.
180
+     *
181
+     * NOTE: Includes the necessary CSS styles. When
182
+     * highlighting several URLs in the same page,
183
+     * prefer using the `parseURL` function instead.
184
+     *
185
+     * @param string $url
186
+     * @return string
187
+     */
188 188
     public static function url(string $url) : string
189 189
     {
190 190
         $info = parseURL($url);
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     */
109 109
     public static function json($subject) : string
110 110
     {
111
-        if(!is_string($subject))
111
+        if (!is_string($subject))
112 112
         {
113 113
             $subject = json_encode($subject, JSON_PRETTY_PRINT);
114 114
         }
@@ -125,9 +125,9 @@  discard block
 block discarded – undo
125 125
     * @param bool $formatSource Whether to format the source with indentation to make it readable.
126 126
     * @return string
127 127
     */
128
-    public static function xml(string $xml, bool $formatSource=false) : string
128
+    public static function xml(string $xml, bool $formatSource = false) : string
129 129
     {
130
-        if($formatSource)
130
+        if ($formatSource)
131 131
         {
132 132
             $dom = new DOMDocument();
133 133
             $dom->preserveWhiteSpace = false;
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
     * @param bool $formatSource
149 149
     * @return string
150 150
     */
151
-    public static function html(string $html, bool $formatSource=false) : string
151
+    public static function html(string $html, bool $formatSource = false) : string
152 152
     {
153
-        if($formatSource)
153
+        if ($formatSource)
154 154
         {
155 155
             $dom = new DOMDocument();
156 156
             $dom->preserveWhiteSpace = false;
Please login to merge, or discard this patch.
src/ConvertHelper/TimeConverter.php 3 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -23,19 +23,19 @@  discard block
 block discarded – undo
23 23
  */
24 24
 class ConvertHelper_TimeConverter
25 25
 {
26
-   /**
27
-    * @var float
28
-    */
26
+    /**
27
+     * @var float
28
+     */
29 29
     private $seconds;
30 30
 
31
-   /**
32
-    * @var array<int,array<string,string|int>>
33
-    */
31
+    /**
32
+     * @var array<int,array<string,string|int>>
33
+     */
34 34
     private static $units;
35 35
     
36
-   /**
37
-    * @param float $seconds
38
-    */
36
+    /**
37
+     * @param float $seconds
38
+     */
39 39
     public function __construct($seconds)
40 40
     {
41 41
         $this->seconds = $seconds;   
@@ -43,9 +43,9 @@  discard block
 block discarded – undo
43 43
         $this->initUnits();
44 44
     }
45 45
     
46
-   /**
47
-    * Creates the list of units once per request as needed.
48
-    */
46
+    /**
47
+     * Creates the list of units once per request as needed.
48
+     */
49 49
     private function initUnits() : void
50 50
     {
51 51
         if(isset(self::$units))
@@ -112,11 +112,11 @@  discard block
 block discarded – undo
112 112
         return implode(', ', $tokens) . ' ' . t('and') . ' ' . $last;
113 113
     }
114 114
     
115
-   /**
116
-    * Resolves the list of converted units.
117
-    * 
118
-    * @return string[]
119
-    */
115
+    /**
116
+     * Resolves the list of converted units.
117
+     * 
118
+     * @return string[]
119
+     */
120 120
     private function resolveTokens() : array
121 121
     {
122 122
         $seconds = $this->seconds;
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     */
49 49
     private function initUnits() : void
50 50
     {
51
-        if(isset(self::$units))
51
+        if (isset(self::$units))
52 52
         {
53 53
             return;
54 54
         }
@@ -90,12 +90,12 @@  discard block
 block discarded – undo
90 90
     public function toString() : string
91 91
     {
92 92
         // specifically handle zero
93
-        if($this->seconds <= 0) 
93
+        if ($this->seconds <= 0) 
94 94
         {
95
-            return '0 ' . t('seconds');
95
+            return '0 '.t('seconds');
96 96
         }
97 97
         
98
-        if($this->seconds < 1) 
98
+        if ($this->seconds < 1) 
99 99
         {
100 100
             return t('less than a second');
101 101
         }
@@ -104,12 +104,12 @@  discard block
 block discarded – undo
104 104
 
105 105
         $last = array_pop($tokens);
106 106
         
107
-        if(empty($tokens)) 
107
+        if (empty($tokens)) 
108 108
         {
109 109
             return $last;
110 110
         }
111 111
         
112
-        return implode(', ', $tokens) . ' ' . t('and') . ' ' . $last;
112
+        return implode(', ', $tokens).' '.t('and').' '.$last;
113 113
     }
114 114
     
115 115
    /**
@@ -122,18 +122,18 @@  discard block
 block discarded – undo
122 122
         $seconds = $this->seconds;
123 123
         $tokens = array();
124 124
         
125
-        foreach(self::$units as $def)
125
+        foreach (self::$units as $def)
126 126
         {
127 127
             $unitValue = intval($seconds / $def['value']);
128 128
             
129
-            if($unitValue <= 0)
129
+            if ($unitValue <= 0)
130 130
             {
131 131
                 continue;
132 132
             }
133 133
             
134
-            $item = strval($unitValue) . ' ';
134
+            $item = strval($unitValue).' ';
135 135
             
136
-            if(abs($unitValue) > 1)
136
+            if (abs($unitValue) > 1)
137 137
             {
138 138
                 $item .= $def['plural'];
139 139
             }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -136,8 +136,7 @@
 block discarded – undo
136 136
             if(abs($unitValue) > 1)
137 137
             {
138 138
                 $item .= $def['plural'];
139
-            }
140
-            else
139
+            } else
141 140
             {
142 141
                 $item .= $def['singular'];
143 142
             }
Please login to merge, or discard this patch.
src/FileHelper.php 3 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -191,8 +191,7 @@  discard block
 block discarded – undo
191 191
             if ($item->isDir()) 
192 192
             {
193 193
                 FileHelper::copyTree($itemPath, $target . '/' . $baseName);
194
-            } 
195
-            else if($item->isFile()) 
194
+            } else if($item->isFile()) 
196 195
             {
197 196
                 self::copyFile($itemPath, $target . '/' . $baseName);
198 197
             }
@@ -225,8 +224,7 @@  discard block
 block discarded – undo
225 224
         if(!file_exists($targetFolder))
226 225
         {
227 226
             self::createFolder($targetFolder);
228
-        }
229
-        else if(!is_writable($targetFolder)) 
227
+        } else if(!is_writable($targetFolder)) 
230 228
         {
231 229
             throw new FileHelper_Exception(
232 230
                 sprintf('Target folder [%s] is not writable.', basename($targetFolder)),
@@ -715,8 +713,7 @@  discard block
 block discarded – undo
715 713
         if(isset($options['relative-path']) && $options['relative-path'] === true) 
716 714
         {
717 715
             $finder->setPathmodeRelative();
718
-        } 
719
-        else if(isset($options['absolute-path']) && $options['absolute-path'] === true)
716
+        } else if(isset($options['absolute-path']) && $options['absolute-path'] === true)
720 717
         {
721 718
             $finder->setPathmodeAbsolute();
722 719
         }
Please login to merge, or discard this patch.
Indentation   +414 added lines, -414 removed lines patch added patch discarded remove patch
@@ -52,32 +52,32 @@  discard block
 block discarded – undo
52 52
     const ERROR_PATH_IS_NOT_A_FOLDER = 340034;
53 53
     const ERROR_CANNOT_WRITE_TO_FOLDER = 340035;
54 54
     
55
-   /**
56
-    * Opens a serialized file and returns the unserialized data.
57
-    * 
58
-    * @param string $file
59
-    * @throws FileHelper_Exception
60
-    * @return array
61
-    * @deprecated Use parseSerializedFile() instead.
62
-    * @see FileHelper::parseSerializedFile()
63
-    */
55
+    /**
56
+     * Opens a serialized file and returns the unserialized data.
57
+     * 
58
+     * @param string $file
59
+     * @throws FileHelper_Exception
60
+     * @return array
61
+     * @deprecated Use parseSerializedFile() instead.
62
+     * @see FileHelper::parseSerializedFile()
63
+     */
64 64
     public static function openUnserialized(string $file) : array
65 65
     {
66 66
         return self::parseSerializedFile($file);
67 67
     }
68 68
 
69
-   /**
70
-    * Opens a serialized file and returns the unserialized data.
71
-    *
72
-    * @param string $file
73
-    * @throws FileHelper_Exception
74
-    * @return array
75
-    * @see FileHelper::parseSerializedFile()
76
-    * 
77
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
78
-    * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ
79
-    * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED
80
-    */
69
+    /**
70
+     * Opens a serialized file and returns the unserialized data.
71
+     *
72
+     * @param string $file
73
+     * @throws FileHelper_Exception
74
+     * @return array
75
+     * @see FileHelper::parseSerializedFile()
76
+     * 
77
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
78
+     * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ
79
+     * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED
80
+     */
81 81
     public static function parseSerializedFile(string $file)
82 82
     {
83 83
         self::requireFileExists($file);
@@ -146,13 +146,13 @@  discard block
 block discarded – undo
146 146
         return rmdir($rootFolder);
147 147
     }
148 148
     
149
-   /**
150
-    * Create a folder, if it does not exist yet.
151
-    *  
152
-    * @param string $path
153
-    * @throws FileHelper_Exception
154
-    * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
155
-    */
149
+    /**
150
+     * Create a folder, if it does not exist yet.
151
+     *  
152
+     * @param string $path
153
+     * @throws FileHelper_Exception
154
+     * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
155
+     */
156 156
     public static function createFolder($path)
157 157
     {
158 158
         if(is_dir($path) || mkdir($path, 0777, true)) {
@@ -199,22 +199,22 @@  discard block
 block discarded – undo
199 199
         }
200 200
     }
201 201
     
202
-   /**
203
-    * Copies a file to the target location. Includes checks
204
-    * for most error sources, like the source file not being
205
-    * readable. Automatically creates the target folder if it
206
-    * does not exist yet.
207
-    * 
208
-    * @param string $sourcePath
209
-    * @param string $targetPath
210
-    * @throws FileHelper_Exception
211
-    * 
212
-    * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
213
-    * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND
214
-    * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE
215
-    * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE
216
-    * @see FileHelper::ERROR_CANNOT_COPY_FILE
217
-    */
202
+    /**
203
+     * Copies a file to the target location. Includes checks
204
+     * for most error sources, like the source file not being
205
+     * readable. Automatically creates the target folder if it
206
+     * does not exist yet.
207
+     * 
208
+     * @param string $sourcePath
209
+     * @param string $targetPath
210
+     * @throws FileHelper_Exception
211
+     * 
212
+     * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
213
+     * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND
214
+     * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE
215
+     * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE
216
+     * @see FileHelper::ERROR_CANNOT_COPY_FILE
217
+     */
218 218
     public static function copyFile(string $sourcePath, string $targetPath) : void
219 219
     {
220 220
         self::requireFileExists($sourcePath, self::ERROR_SOURCE_FILE_NOT_FOUND);
@@ -254,15 +254,15 @@  discard block
 block discarded – undo
254 254
         );
255 255
     }
256 256
     
257
-   /**
258
-    * Deletes the target file. Ignored if it cannot be found,
259
-    * and throws an exception if it fails.
260
-    * 
261
-    * @param string $filePath
262
-    * @throws FileHelper_Exception
263
-    * 
264
-    * @see FileHelper::ERROR_CANNOT_DELETE_FILE
265
-    */
257
+    /**
258
+     * Deletes the target file. Ignored if it cannot be found,
259
+     * and throws an exception if it fails.
260
+     * 
261
+     * @param string $filePath
262
+     * @throws FileHelper_Exception
263
+     * 
264
+     * @see FileHelper::ERROR_CANNOT_DELETE_FILE
265
+     */
266 266
     public static function deleteFile(string $filePath) : void
267 267
     {
268 268
         if(!file_exists($filePath)) {
@@ -284,15 +284,15 @@  discard block
 block discarded – undo
284 284
     }
285 285
 
286 286
     /**
287
-    * Creates a new CSV parser instance and returns it.
288
-    * 
289
-    * @param string $delimiter
290
-    * @param string $enclosure
291
-    * @param string $escape
292
-    * @param bool $heading
293
-    * @return Csv
287
+     * Creates a new CSV parser instance and returns it.
288
+     * 
289
+     * @param string $delimiter
290
+     * @param string $enclosure
291
+     * @param string $escape
292
+     * @param bool $heading
293
+     * @return Csv
294 294
      * @see CSVHelper::createParser()
295
-    */
295
+     */
296 296
     public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv
297 297
     {
298 298
         if($delimiter==='') { $delimiter = ';'; }
@@ -305,21 +305,21 @@  discard block
 block discarded – undo
305 305
         return $parser;
306 306
     }
307 307
 
308
-   /**
309
-    * Parses all lines in the specified string and returns an
310
-    * indexed array with all csv values in each line.
311
-    *
312
-    * @param string $csv
313
-    * @param string $delimiter
314
-    * @param string $enclosure
315
-    * @param string $escape
316
-    * @param bool $heading
317
-    * @return array
318
-    * @throws FileHelper_Exception
319
-    * 
320
-    * @see parseCSVFile()
321
-    * @see FileHelper::ERROR_PARSING_CSV
322
-    */
308
+    /**
309
+     * Parses all lines in the specified string and returns an
310
+     * indexed array with all csv values in each line.
311
+     *
312
+     * @param string $csv
313
+     * @param string $delimiter
314
+     * @param string $enclosure
315
+     * @param string $escape
316
+     * @param bool $heading
317
+     * @return array
318
+     * @throws FileHelper_Exception
319
+     * 
320
+     * @see parseCSVFile()
321
+     * @see FileHelper::ERROR_PARSING_CSV
322
+     */
323 323
     public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
324 324
     {
325 325
         $parser = self::createCSVParser($delimiter, $enclosure, '\\', $heading);
@@ -490,31 +490,31 @@  discard block
 block discarded – undo
490 490
         );
491 491
     }
492 492
     
493
-   /**
494
-    * Verifies whether the target file is a PHP file. The path
495
-    * to the file can be a path to a file as a string, or a 
496
-    * DirectoryIterator object instance.
497
-    * 
498
-    * @param string|\DirectoryIterator $pathOrDirIterator
499
-    * @return boolean
500
-    */
493
+    /**
494
+     * Verifies whether the target file is a PHP file. The path
495
+     * to the file can be a path to a file as a string, or a 
496
+     * DirectoryIterator object instance.
497
+     * 
498
+     * @param string|\DirectoryIterator $pathOrDirIterator
499
+     * @return boolean
500
+     */
501 501
     public static function isPHPFile($pathOrDirIterator)
502 502
     {
503
-    	if(self::getExtension($pathOrDirIterator) == 'php') {
504
-    		return true;
505
-    	}
503
+        if(self::getExtension($pathOrDirIterator) == 'php') {
504
+            return true;
505
+        }
506 506
     	
507
-    	return false;
507
+        return false;
508 508
     }
509 509
     
510
-   /**
511
-    * Retrieves the extension of the specified file. Can be a path
512
-    * to a file as a string, or a DirectoryIterator object instance.
513
-    * 
514
-    * @param string|\DirectoryIterator $pathOrDirIterator
515
-    * @param bool $lowercase
516
-    * @return string
517
-    */
510
+    /**
511
+     * Retrieves the extension of the specified file. Can be a path
512
+     * to a file as a string, or a DirectoryIterator object instance.
513
+     * 
514
+     * @param string|\DirectoryIterator $pathOrDirIterator
515
+     * @param bool $lowercase
516
+     * @return string
517
+     */
518 518
     public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string
519 519
     {
520 520
         if($pathOrDirIterator instanceof \DirectoryIterator) {
@@ -525,51 +525,51 @@  discard block
 block discarded – undo
525 525
          
526 526
         $ext = pathinfo($filename, PATHINFO_EXTENSION);
527 527
         if($lowercase) {
528
-        	$ext = mb_strtolower($ext);
528
+            $ext = mb_strtolower($ext);
529 529
         }
530 530
         
531 531
         return $ext;
532 532
     }
533 533
     
534
-   /**
535
-    * Retrieves the file name from a path, with or without extension.
536
-    * The path to the file can be a string, or a DirectoryIterator object
537
-    * instance.
538
-    * 
539
-    * In case of folders, behaves like the pathinfo function: returns
540
-    * the name of the folder.
541
-    * 
542
-    * @param string|\DirectoryIterator $pathOrDirIterator
543
-    * @param bool $extension
544
-    * @return string
545
-    */
534
+    /**
535
+     * Retrieves the file name from a path, with or without extension.
536
+     * The path to the file can be a string, or a DirectoryIterator object
537
+     * instance.
538
+     * 
539
+     * In case of folders, behaves like the pathinfo function: returns
540
+     * the name of the folder.
541
+     * 
542
+     * @param string|\DirectoryIterator $pathOrDirIterator
543
+     * @param bool $extension
544
+     * @return string
545
+     */
546 546
     public static function getFilename($pathOrDirIterator, $extension = true)
547 547
     {
548 548
         $path = $pathOrDirIterator;
549
-    	if($pathOrDirIterator instanceof \DirectoryIterator) {
550
-    		$path = $pathOrDirIterator->getFilename();
551
-    	}
549
+        if($pathOrDirIterator instanceof \DirectoryIterator) {
550
+            $path = $pathOrDirIterator->getFilename();
551
+        }
552 552
     	
553
-    	$path = self::normalizePath($path);
553
+        $path = self::normalizePath($path);
554 554
     	
555
-    	if(!$extension) {
556
-    	    return pathinfo($path, PATHINFO_FILENAME);
557
-    	}
555
+        if(!$extension) {
556
+            return pathinfo($path, PATHINFO_FILENAME);
557
+        }
558 558
     	
559
-    	return pathinfo($path, PATHINFO_BASENAME); 
559
+        return pathinfo($path, PATHINFO_BASENAME); 
560 560
     }
561 561
    
562
-   /**
563
-    * Tries to read the contents of the target file and
564
-    * treat it as JSON to return the decoded JSON data.
565
-    * 
566
-    * @param string $file
567
-    * @throws FileHelper_Exception
568
-    * @return array
569
-    * 
570
-    * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
571
-    * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
572
-    */ 
562
+    /**
563
+     * Tries to read the contents of the target file and
564
+     * treat it as JSON to return the decoded JSON data.
565
+     * 
566
+     * @param string $file
567
+     * @throws FileHelper_Exception
568
+     * @return array
569
+     * 
570
+     * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
571
+     * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
572
+     */ 
573 573
     public static function parseJSONFile(string $file, $targetEncoding=null, $sourceEncoding=null)
574 574
     {
575 575
         self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE);
@@ -605,16 +605,16 @@  discard block
 block discarded – undo
605 605
         return $json;
606 606
     }
607 607
     
608
-   /**
609
-    * Corrects common formatting mistakes when users enter
610
-    * file names, like too many spaces, dots and the like.
611
-    * 
612
-    * NOTE: if the file name contains a path, the path is
613
-    * stripped, leaving only the file name.
614
-    * 
615
-    * @param string $name
616
-    * @return string
617
-    */
608
+    /**
609
+     * Corrects common formatting mistakes when users enter
610
+     * file names, like too many spaces, dots and the like.
611
+     * 
612
+     * NOTE: if the file name contains a path, the path is
613
+     * stripped, leaving only the file name.
614
+     * 
615
+     * @param string $name
616
+     * @return string
617
+     */
618 618
     public static function fixFileName(string $name) : string
619 619
     {
620 620
         $name = trim($name);
@@ -644,68 +644,68 @@  discard block
 block discarded – undo
644 644
         return $name;
645 645
     }
646 646
     
647
-   /**
648
-    * Creates an instance of the file finder, which is an easier
649
-    * alternative to the other manual findFile methods, since all
650
-    * options can be set by chaining.
651
-    * 
652
-    * @param string $path
653
-    * @return FileHelper_FileFinder
654
-    */
647
+    /**
648
+     * Creates an instance of the file finder, which is an easier
649
+     * alternative to the other manual findFile methods, since all
650
+     * options can be set by chaining.
651
+     * 
652
+     * @param string $path
653
+     * @return FileHelper_FileFinder
654
+     */
655 655
     public static function createFileFinder(string $path) : FileHelper_FileFinder
656 656
     {
657 657
         return new FileHelper_FileFinder($path);
658 658
     }
659 659
     
660
-   /**
661
-    * Searches for all HTML files in the target folder.
662
-    * 
663
-    * NOTE: This method only exists for backwards compatibility.
664
-    * Use the `createFileFinder()` method instead, which offers
665
-    * an object oriented interface that is much easier to use.
666
-    * 
667
-    * @param string $targetFolder
668
-    * @param array $options
669
-    * @return array An indexed array with files.
670
-    * @see FileHelper::createFileFinder()
671
-    */
660
+    /**
661
+     * Searches for all HTML files in the target folder.
662
+     * 
663
+     * NOTE: This method only exists for backwards compatibility.
664
+     * Use the `createFileFinder()` method instead, which offers
665
+     * an object oriented interface that is much easier to use.
666
+     * 
667
+     * @param string $targetFolder
668
+     * @param array $options
669
+     * @return array An indexed array with files.
670
+     * @see FileHelper::createFileFinder()
671
+     */
672 672
     public static function findHTMLFiles(string $targetFolder, array $options=array()) : array
673 673
     {
674 674
         return self::findFiles($targetFolder, array('html'), $options);
675 675
     }
676 676
 
677
-   /**
678
-    * Searches for all PHP files in the target folder.
679
-    * 
680
-    * NOTE: This method only exists for backwards compatibility.
681
-    * Use the `createFileFinder()` method instead, which offers
682
-    * an object oriented interface that is much easier to use.
683
-    * 
684
-    * @param string $targetFolder
685
-    * @param array $options
686
-    * @return array An indexed array of PHP files.
687
-    * @see FileHelper::createFileFinder()
688
-    */
677
+    /**
678
+     * Searches for all PHP files in the target folder.
679
+     * 
680
+     * NOTE: This method only exists for backwards compatibility.
681
+     * Use the `createFileFinder()` method instead, which offers
682
+     * an object oriented interface that is much easier to use.
683
+     * 
684
+     * @param string $targetFolder
685
+     * @param array $options
686
+     * @return array An indexed array of PHP files.
687
+     * @see FileHelper::createFileFinder()
688
+     */
689 689
     public static function findPHPFiles(string $targetFolder, array $options=array()) : array
690 690
     {
691 691
         return self::findFiles($targetFolder, array('php'), $options);
692 692
     }
693 693
     
694
-   /**
695
-    * Finds files according to the specified options.
696
-    * 
697
-    * NOTE: This method only exists for backwards compatibility.
698
-    * Use the `createFileFinder()` method instead, which offers
699
-    * an object oriented interface that is much easier to use.
700
-    *  
701
-    * @param string $targetFolder
702
-    * @param array $extensions
703
-    * @param array $options
704
-    * @param array $files
705
-    * @throws FileHelper_Exception
706
-    * @return array
707
-    * @see FileHelper::createFileFinder()
708
-    */
694
+    /**
695
+     * Finds files according to the specified options.
696
+     * 
697
+     * NOTE: This method only exists for backwards compatibility.
698
+     * Use the `createFileFinder()` method instead, which offers
699
+     * an object oriented interface that is much easier to use.
700
+     *  
701
+     * @param string $targetFolder
702
+     * @param array $extensions
703
+     * @param array $options
704
+     * @param array $files
705
+     * @throws FileHelper_Exception
706
+     * @return array
707
+     * @see FileHelper::createFileFinder()
708
+     */
709 709
     public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array(), array $files=array()) : array
710 710
     {
711 711
         $finder = self::createFileFinder($targetFolder);
@@ -731,14 +731,14 @@  discard block
 block discarded – undo
731 731
         return $finder->getAll();
732 732
     }
733 733
 
734
-   /**
735
-    * Removes the extension from the specified path or file name,
736
-    * if any, and returns the name without the extension.
737
-    * 
738
-    * @param string $filename
739
-    * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
740
-    * @return string
741
-    */
734
+    /**
735
+     * Removes the extension from the specified path or file name,
736
+     * if any, and returns the name without the extension.
737
+     * 
738
+     * @param string $filename
739
+     * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
740
+     * @return string
741
+     */
742 742
     public static function removeExtension(string $filename, bool $keepPath=false) : string
743 743
     {
744 744
         // normalize paths to allow windows style slashes even on nix servers
@@ -758,22 +758,22 @@  discard block
 block discarded – undo
758 758
         return implode('/', $parts);
759 759
     }
760 760
     
761
-   /**
762
-    * Detects the UTF BOM in the target file, if any. Returns
763
-    * the encoding matching the BOM, which can be any of the
764
-    * following:
765
-    * 
766
-    * <ul>
767
-    * <li>UTF32-BE</li>
768
-    * <li>UTF32-LE</li>
769
-    * <li>UTF16-BE</li>
770
-    * <li>UTF16-LE</li>
771
-    * <li>UTF8</li>
772
-    * </ul>
773
-    * 
774
-    * @param string $filename
775
-    * @return string|NULL
776
-    */
761
+    /**
762
+     * Detects the UTF BOM in the target file, if any. Returns
763
+     * the encoding matching the BOM, which can be any of the
764
+     * following:
765
+     * 
766
+     * <ul>
767
+     * <li>UTF32-BE</li>
768
+     * <li>UTF32-LE</li>
769
+     * <li>UTF16-BE</li>
770
+     * <li>UTF16-LE</li>
771
+     * <li>UTF8</li>
772
+     * </ul>
773
+     * 
774
+     * @param string $filename
775
+     * @return string|NULL
776
+     */
777 777
     public static function detectUTFBom(string $filename) : ?string
778 778
     {
779 779
         $fp = fopen($filename, 'r');
@@ -805,13 +805,13 @@  discard block
 block discarded – undo
805 805
     
806 806
     protected static $utfBoms;
807 807
     
808
-   /**
809
-    * Retrieves a list of all UTF byte order mark character
810
-    * sequences, as an assocative array with UTF encoding => bom sequence
811
-    * pairs.
812
-    * 
813
-    * @return array
814
-    */
808
+    /**
809
+     * Retrieves a list of all UTF byte order mark character
810
+     * sequences, as an assocative array with UTF encoding => bom sequence
811
+     * pairs.
812
+     * 
813
+     * @return array
814
+     */
815 815
     public static function getUTFBOMs()
816 816
     {
817 817
         if(!isset(self::$utfBoms)) {
@@ -827,15 +827,15 @@  discard block
 block discarded – undo
827 827
         return self::$utfBoms;
828 828
     }
829 829
     
830
-   /**
831
-    * Checks whether the specified encoding is a valid
832
-    * unicode encoding, for example "UTF16-LE" or "UTF8".
833
-    * Also accounts for alternate way to write the, like
834
-    * "UTF-8", and omitting little/big endian suffixes.
835
-    * 
836
-    * @param string $encoding
837
-    * @return boolean
838
-    */
830
+    /**
831
+     * Checks whether the specified encoding is a valid
832
+     * unicode encoding, for example "UTF16-LE" or "UTF8".
833
+     * Also accounts for alternate way to write the, like
834
+     * "UTF-8", and omitting little/big endian suffixes.
835
+     * 
836
+     * @param string $encoding
837
+     * @return boolean
838
+     */
839 839
     public static function isValidUnicodeEncoding(string $encoding) : bool
840 840
     {
841 841
         $encodings = self::getKnownUnicodeEncodings();
@@ -854,40 +854,40 @@  discard block
 block discarded – undo
854 854
         return in_array($encoding, $keep);
855 855
     }
856 856
     
857
-   /**
858
-    * Retrieves a list of all known unicode file encodings.
859
-    * @return array
860
-    */
857
+    /**
858
+     * Retrieves a list of all known unicode file encodings.
859
+     * @return array
860
+     */
861 861
     public static function getKnownUnicodeEncodings()
862 862
     {
863 863
         return array_keys(self::getUTFBOMs());
864 864
     }
865 865
     
866
-   /**
867
-    * Normalizes the slash style in a file or folder path,
868
-    * by replacing any antislashes with forward slashes.
869
-    * 
870
-    * @param string $path
871
-    * @return string
872
-    */
866
+    /**
867
+     * Normalizes the slash style in a file or folder path,
868
+     * by replacing any antislashes with forward slashes.
869
+     * 
870
+     * @param string $path
871
+     * @return string
872
+     */
873 873
     public static function normalizePath(string $path) : string
874 874
     {
875 875
         return str_replace(array('\\', '//'), array('/', '/'), $path);
876 876
     }
877 877
     
878
-   /**
879
-    * Saves the specified data to a file, JSON encoded.
880
-    * 
881
-    * @param mixed $data
882
-    * @param string $file
883
-    * @param bool $pretty
884
-    * @throws FileHelper_Exception
885
-    * 
886
-    * @see FileHelper::ERROR_JSON_ENCODE_ERROR
887
-    * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
888
-    * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
889
-    * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
890
-    */
878
+    /**
879
+     * Saves the specified data to a file, JSON encoded.
880
+     * 
881
+     * @param mixed $data
882
+     * @param string $file
883
+     * @param bool $pretty
884
+     * @throws FileHelper_Exception
885
+     * 
886
+     * @see FileHelper::ERROR_JSON_ENCODE_ERROR
887
+     * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
888
+     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
889
+     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
890
+     */
891 891
     public static function saveAsJSON($data, string $file, bool $pretty=false)
892 892
     {
893 893
         $options = null;
@@ -911,18 +911,18 @@  discard block
 block discarded – undo
911 911
         self::saveFile($file, $json);
912 912
     }
913 913
    
914
-   /**
915
-    * Saves the specified content to the target file, creating
916
-    * the file and the folder as necessary.
917
-    * 
918
-    * @param string $filePath
919
-    * @param string $content
920
-    * @throws FileHelper_Exception
921
-    * 
922
-    * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
923
-    * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
924
-    * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
925
-    */
914
+    /**
915
+     * Saves the specified content to the target file, creating
916
+     * the file and the folder as necessary.
917
+     * 
918
+     * @param string $filePath
919
+     * @param string $content
920
+     * @throws FileHelper_Exception
921
+     * 
922
+     * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
923
+     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
924
+     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
925
+     */
926 926
     public static function saveFile(string $filePath, string $content='') : void
927 927
     {
928 928
         $filePath = self::normalizePath($filePath);
@@ -1072,16 +1072,16 @@  discard block
 block discarded – undo
1072 1072
         return $result;
1073 1073
     }
1074 1074
     
1075
-   /**
1076
-    * Validates a PHP file's syntax.
1077
-    * 
1078
-    * NOTE: This will fail silently if the PHP command line
1079
-    * is not available. Use {@link FileHelper::canMakePHPCalls()}
1080
-    * to check this beforehand as needed.
1081
-    * 
1082
-    * @param string $path
1083
-    * @return boolean|array A boolean true if the file is valid, an array with validation messages otherwise.
1084
-    */
1075
+    /**
1076
+     * Validates a PHP file's syntax.
1077
+     * 
1078
+     * NOTE: This will fail silently if the PHP command line
1079
+     * is not available. Use {@link FileHelper::canMakePHPCalls()}
1080
+     * to check this beforehand as needed.
1081
+     * 
1082
+     * @param string $path
1083
+     * @return boolean|array A boolean true if the file is valid, an array with validation messages otherwise.
1084
+     */
1085 1085
     public static function checkPHPFileSyntax($path)
1086 1086
     {
1087 1087
         if(!self::canMakePHPCalls()) {
@@ -1105,14 +1105,14 @@  discard block
 block discarded – undo
1105 1105
         return $output;
1106 1106
     }
1107 1107
     
1108
-   /**
1109
-    * Retrieves the last modified date for the specified file or folder.
1110
-    * 
1111
-    * Note: If the target does not exist, returns null. 
1112
-    * 
1113
-    * @param string $path
1114
-    * @return \DateTime|NULL
1115
-    */
1108
+    /**
1109
+     * Retrieves the last modified date for the specified file or folder.
1110
+     * 
1111
+     * Note: If the target does not exist, returns null. 
1112
+     * 
1113
+     * @param string $path
1114
+     * @return \DateTime|NULL
1115
+     */
1116 1116
     public static function getModifiedDate($path)
1117 1117
     {
1118 1118
         $time = filemtime($path);
@@ -1125,24 +1125,24 @@  discard block
 block discarded – undo
1125 1125
         return null; 
1126 1126
     }
1127 1127
     
1128
-   /**
1129
-    * Retrieves the names of all subfolders in the specified path.
1130
-    * 
1131
-    * Available options:
1132
-    * 
1133
-    * - recursive: true/false
1134
-    *   Whether to search for subfolders recursively. 
1135
-    *   
1136
-    * - absolute-paths: true/false
1137
-    *   Whether to return a list of absolute paths.
1138
-    * 
1139
-    * @param string $targetFolder
1140
-    * @param array $options
1141
-    * @throws FileHelper_Exception
1142
-    * @return string[]
1143
-    * 
1144
-    * @todo Move this to a separate class.
1145
-    */
1128
+    /**
1129
+     * Retrieves the names of all subfolders in the specified path.
1130
+     * 
1131
+     * Available options:
1132
+     * 
1133
+     * - recursive: true/false
1134
+     *   Whether to search for subfolders recursively. 
1135
+     *   
1136
+     * - absolute-paths: true/false
1137
+     *   Whether to return a list of absolute paths.
1138
+     * 
1139
+     * @param string $targetFolder
1140
+     * @param array $options
1141
+     * @throws FileHelper_Exception
1142
+     * @return string[]
1143
+     * 
1144
+     * @todo Move this to a separate class.
1145
+     */
1146 1146
     public static function getSubfolders($targetFolder, $options = array())
1147 1147
     {
1148 1148
         if(!is_dir($targetFolder)) 
@@ -1203,16 +1203,16 @@  discard block
 block discarded – undo
1203 1203
         return $result;
1204 1204
     }
1205 1205
 
1206
-   /**
1207
-    * Retrieves the maximum allowed upload file size, in bytes.
1208
-    * Takes into account the PHP ini settings <code>post_max_size</code>
1209
-    * and <code>upload_max_filesize</code>. Since these cannot
1210
-    * be modified at runtime, they are the hard limits for uploads.
1211
-    * 
1212
-    * NOTE: Based on binary values, where 1KB = 1024 Bytes.
1213
-    * 
1214
-    * @return int Will return <code>-1</code> if no limit.
1215
-    */
1206
+    /**
1207
+     * Retrieves the maximum allowed upload file size, in bytes.
1208
+     * Takes into account the PHP ini settings <code>post_max_size</code>
1209
+     * and <code>upload_max_filesize</code>. Since these cannot
1210
+     * be modified at runtime, they are the hard limits for uploads.
1211
+     * 
1212
+     * NOTE: Based on binary values, where 1KB = 1024 Bytes.
1213
+     * 
1214
+     * @return int Will return <code>-1</code> if no limit.
1215
+     */
1216 1216
     public static function getMaxUploadFilesize() : int
1217 1217
     {
1218 1218
         static $max_size = -1;
@@ -1250,16 +1250,16 @@  discard block
 block discarded – undo
1250 1250
         return round($size);
1251 1251
     }
1252 1252
    
1253
-   /**
1254
-    * Makes a path relative using a folder depth: will reduce the
1255
-    * length of the path so that only the amount of folders defined
1256
-    * in the <code>$depth</code> attribute are shown below the actual
1257
-    * folder or file in the path.
1258
-    *  
1259
-    * @param string  $path The absolute or relative path
1260
-    * @param int $depth The folder depth to reduce the path to
1261
-    * @return string
1262
-    */
1253
+    /**
1254
+     * Makes a path relative using a folder depth: will reduce the
1255
+     * length of the path so that only the amount of folders defined
1256
+     * in the <code>$depth</code> attribute are shown below the actual
1257
+     * folder or file in the path.
1258
+     *  
1259
+     * @param string  $path The absolute or relative path
1260
+     * @param int $depth The folder depth to reduce the path to
1261
+     * @return string
1262
+     */
1263 1263
     public static function relativizePathByDepth(string $path, int $depth=2) : string
1264 1264
     {
1265 1265
         $path = self::normalizePath($path);
@@ -1297,23 +1297,23 @@  discard block
 block discarded – undo
1297 1297
         return trim(implode('/', $tokens), '/');
1298 1298
     }
1299 1299
     
1300
-   /**
1301
-    * Makes the specified path relative to another path,
1302
-    * by removing one from the other if found. Also 
1303
-    * normalizes the path to use forward slashes. 
1304
-    * 
1305
-    * Example:
1306
-    * 
1307
-    * <pre>
1308
-    * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder');
1309
-    * </pre>
1310
-    * 
1311
-    * Result: <code>to/file.txt</code>
1312
-    * 
1313
-    * @param string $path
1314
-    * @param string $relativeTo
1315
-    * @return string
1316
-    */
1300
+    /**
1301
+     * Makes the specified path relative to another path,
1302
+     * by removing one from the other if found. Also 
1303
+     * normalizes the path to use forward slashes. 
1304
+     * 
1305
+     * Example:
1306
+     * 
1307
+     * <pre>
1308
+     * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder');
1309
+     * </pre>
1310
+     * 
1311
+     * Result: <code>to/file.txt</code>
1312
+     * 
1313
+     * @param string $path
1314
+     * @param string $relativeTo
1315
+     * @return string
1316
+     */
1317 1317
     public static function relativizePath(string $path, string $relativeTo) : string
1318 1318
     {
1319 1319
         $path = self::normalizePath($path);
@@ -1325,17 +1325,17 @@  discard block
 block discarded – undo
1325 1325
         return $relative;
1326 1326
     }
1327 1327
     
1328
-   /**
1329
-    * Checks that the target file exists, and throws an exception
1330
-    * if it does not. 
1331
-    * 
1332
-    * @param string $path
1333
-    * @param int|NULL $errorCode Optional custom error code
1334
-    * @throws FileHelper_Exception
1335
-    * @return string The real path to the file
1336
-    * 
1337
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1338
-    */
1328
+    /**
1329
+     * Checks that the target file exists, and throws an exception
1330
+     * if it does not. 
1331
+     * 
1332
+     * @param string $path
1333
+     * @param int|NULL $errorCode Optional custom error code
1334
+     * @throws FileHelper_Exception
1335
+     * @return string The real path to the file
1336
+     * 
1337
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1338
+     */
1339 1339
     public static function requireFileExists(string $path, ?int $errorCode=null) : string
1340 1340
     {
1341 1341
         $result = realpath($path);
@@ -1373,18 +1373,18 @@  discard block
 block discarded – undo
1373 1373
         );
1374 1374
     }
1375 1375
     
1376
-   /**
1377
-    * Reads a specific line number from the target file and returns its
1378
-    * contents, if the file has such a line. Does so with little memory
1379
-    * usage, as the file is not read entirely into memory.
1380
-    * 
1381
-    * @param string $path
1382
-    * @param int $lineNumber Note: 1-based; the first line is number 1.
1383
-    * @return string|NULL Will return null if the requested line does not exist.
1384
-    * @throws FileHelper_Exception
1385
-    * 
1386
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1387
-    */
1376
+    /**
1377
+     * Reads a specific line number from the target file and returns its
1378
+     * contents, if the file has such a line. Does so with little memory
1379
+     * usage, as the file is not read entirely into memory.
1380
+     * 
1381
+     * @param string $path
1382
+     * @param int $lineNumber Note: 1-based; the first line is number 1.
1383
+     * @return string|NULL Will return null if the requested line does not exist.
1384
+     * @throws FileHelper_Exception
1385
+     * 
1386
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1387
+     */
1388 1388
     public static function getLineFromFile(string $path, int $lineNumber) : ?string
1389 1389
     {
1390 1390
         self::requireFileExists($path);
@@ -1400,19 +1400,19 @@  discard block
 block discarded – undo
1400 1400
         $file->seek($targetLine);
1401 1401
         
1402 1402
         if($file->key() !== $targetLine) {
1403
-             return null;
1403
+                return null;
1404 1404
         }
1405 1405
         
1406 1406
         return $file->current(); 
1407 1407
     }
1408 1408
     
1409
-   /**
1410
-    * Retrieves the total amount of lines in the file, without 
1411
-    * reading the whole file into memory.
1412
-    * 
1413
-    * @param string $path
1414
-    * @return int
1415
-    */
1409
+    /**
1410
+     * Retrieves the total amount of lines in the file, without 
1411
+     * reading the whole file into memory.
1412
+     * 
1413
+     * @param string $path
1414
+     * @return int
1415
+     */
1416 1416
     public static function countFileLines(string $path) : int
1417 1417
     {
1418 1418
         self::requireFileExists($path);
@@ -1442,26 +1442,26 @@  discard block
 block discarded – undo
1442 1442
         return $number+1;
1443 1443
     }
1444 1444
     
1445
-   /**
1446
-    * Parses the target file to detect any PHP classes contained
1447
-    * within, and retrieve information on them. Does not use the 
1448
-    * PHP reflection API.
1449
-    * 
1450
-    * @param string $filePath
1451
-    * @return FileHelper_PHPClassInfo
1452
-    */
1445
+    /**
1446
+     * Parses the target file to detect any PHP classes contained
1447
+     * within, and retrieve information on them. Does not use the 
1448
+     * PHP reflection API.
1449
+     * 
1450
+     * @param string $filePath
1451
+     * @return FileHelper_PHPClassInfo
1452
+     */
1453 1453
     public static function findPHPClasses(string $filePath) : FileHelper_PHPClassInfo
1454 1454
     {
1455 1455
         return new FileHelper_PHPClassInfo($filePath);
1456 1456
     }
1457 1457
     
1458
-   /**
1459
-    * Detects the end of line style used in the target file, if any.
1460
-    * Can be used with large files, because it only reads part of it.
1461
-    * 
1462
-    * @param string $filePath The path to the file.
1463
-    * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found.
1464
-    */
1458
+    /**
1459
+     * Detects the end of line style used in the target file, if any.
1460
+     * Can be used with large files, because it only reads part of it.
1461
+     * 
1462
+     * @param string $filePath The path to the file.
1463
+     * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found.
1464
+     */
1465 1465
     public static function detectEOLCharacter(string $filePath) : ?ConvertHelper_EOL
1466 1466
     {
1467 1467
         // 20 lines is enough to get a good picture of the newline style in the file.
@@ -1474,18 +1474,18 @@  discard block
 block discarded – undo
1474 1474
         return ConvertHelper::detectEOLCharacter($string);
1475 1475
     }
1476 1476
     
1477
-   /**
1478
-    * Reads the specified amount of lines from the target file.
1479
-    * Unicode BOM compatible: any byte order marker is stripped
1480
-    * from the resulting lines.
1481
-    * 
1482
-    * @param string $filePath
1483
-    * @param int $amount Set to 0 to read all lines.
1484
-    * @return array
1485
-    * 
1486
-    * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1487
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1488
-    */
1477
+    /**
1478
+     * Reads the specified amount of lines from the target file.
1479
+     * Unicode BOM compatible: any byte order marker is stripped
1480
+     * from the resulting lines.
1481
+     * 
1482
+     * @param string $filePath
1483
+     * @param int $amount Set to 0 to read all lines.
1484
+     * @return array
1485
+     * 
1486
+     * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1487
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1488
+     */
1489 1489
     public static function readLines(string $filePath, int $amount=0) : array
1490 1490
     {
1491 1491
         self::requireFileExists($filePath);
@@ -1538,16 +1538,16 @@  discard block
 block discarded – undo
1538 1538
         return $result;
1539 1539
     }
1540 1540
     
1541
-   /**
1542
-    * Reads all content from a file.
1543
-    * 
1544
-    * @param string $filePath
1545
-    * @throws FileHelper_Exception
1546
-    * @return string
1547
-    * 
1548
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1549
-    * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
1550
-    */
1541
+    /**
1542
+     * Reads all content from a file.
1543
+     * 
1544
+     * @param string $filePath
1545
+     * @throws FileHelper_Exception
1546
+     * @return string
1547
+     * 
1548
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1549
+     * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
1550
+     */
1551 1551
     public static function readContents(string $filePath) : string
1552 1552
     {
1553 1553
         self::requireFileExists($filePath);
@@ -1568,18 +1568,18 @@  discard block
 block discarded – undo
1568 1568
         );
1569 1569
     }
1570 1570
 
1571
-   /**
1572
-    * Ensures that the target path exists on disk, and is a folder.
1573
-    * 
1574
-    * @param string $path
1575
-    * @return string The real path, with normalized slashes.
1576
-    * @throws FileHelper_Exception
1577
-    * 
1578
-    * @see FileHelper::normalizePath()
1579
-    * 
1580
-    * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST
1581
-    * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER
1582
-    */
1571
+    /**
1572
+     * Ensures that the target path exists on disk, and is a folder.
1573
+     * 
1574
+     * @param string $path
1575
+     * @return string The real path, with normalized slashes.
1576
+     * @throws FileHelper_Exception
1577
+     * 
1578
+     * @see FileHelper::normalizePath()
1579
+     * 
1580
+     * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST
1581
+     * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER
1582
+     */
1583 1583
     public static function requireFolderExists(string $path) : string
1584 1584
     {
1585 1585
         $actual = realpath($path);
Please login to merge, or discard this patch.
Spacing   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         
85 85
         $contents = file_get_contents($file);
86 86
         
87
-        if($contents === false) 
87
+        if ($contents === false) 
88 88
         {
89 89
             throw new FileHelper_Exception(
90 90
                 'Cannot load serialized content from file.',
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         
99 99
         $result = @unserialize($contents);
100 100
         
101
-        if($result !== false) {
101
+        if ($result !== false) {
102 102
             return $result;
103 103
         }
104 104
         
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
     
115 115
     public static function deleteTree($rootFolder)
116 116
     {
117
-        if(!file_exists($rootFolder)) {
117
+        if (!file_exists($rootFolder)) {
118 118
             return true;
119 119
         }
120 120
         
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     */
156 156
     public static function createFolder($path)
157 157
     {
158
-        if(is_dir($path) || mkdir($path, 0777, true)) {
158
+        if (is_dir($path) || mkdir($path, 0777, true)) {
159 159
             return;
160 160
         }
161 161
         
@@ -190,11 +190,11 @@  discard block
 block discarded – undo
190 190
 
191 191
             if ($item->isDir()) 
192 192
             {
193
-                FileHelper::copyTree($itemPath, $target . '/' . $baseName);
193
+                FileHelper::copyTree($itemPath, $target.'/'.$baseName);
194 194
             } 
195
-            else if($item->isFile()) 
195
+            else if ($item->isFile()) 
196 196
             {
197
-                self::copyFile($itemPath, $target . '/' . $baseName);
197
+                self::copyFile($itemPath, $target.'/'.$baseName);
198 198
             }
199 199
         }
200 200
     }
@@ -222,11 +222,11 @@  discard block
 block discarded – undo
222 222
         
223 223
         $targetFolder = dirname($targetPath);
224 224
         
225
-        if(!file_exists($targetFolder))
225
+        if (!file_exists($targetFolder))
226 226
         {
227 227
             self::createFolder($targetFolder);
228 228
         }
229
-        else if(!is_writable($targetFolder)) 
229
+        else if (!is_writable($targetFolder)) 
230 230
         {
231 231
             throw new FileHelper_Exception(
232 232
                 sprintf('Target folder [%s] is not writable.', basename($targetFolder)),
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
             );
239 239
         }
240 240
         
241
-        if(copy($sourcePath, $targetPath)) {
241
+        if (copy($sourcePath, $targetPath)) {
242 242
             return;
243 243
         }
244 244
         
@@ -265,11 +265,11 @@  discard block
 block discarded – undo
265 265
     */
266 266
     public static function deleteFile(string $filePath) : void
267 267
     {
268
-        if(!file_exists($filePath)) {
268
+        if (!file_exists($filePath)) {
269 269
             return;
270 270
         }
271 271
         
272
-        if(unlink($filePath)) {
272
+        if (unlink($filePath)) {
273 273
             return;
274 274
         }
275 275
         
@@ -293,10 +293,10 @@  discard block
 block discarded – undo
293 293
     * @return Csv
294 294
      * @see CSVHelper::createParser()
295 295
     */
296
-    public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv
296
+    public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : Csv
297 297
     {
298
-        if($delimiter==='') { $delimiter = ';'; }
299
-        if($enclosure==='') { $enclosure = '"'; }
298
+        if ($delimiter === '') { $delimiter = ';'; }
299
+        if ($enclosure === '') { $enclosure = '"'; }
300 300
 
301 301
         $parser = CSVHelper::createParser($delimiter);
302 302
         $parser->enclosure = $enclosure;
@@ -320,11 +320,11 @@  discard block
 block discarded – undo
320 320
     * @see parseCSVFile()
321 321
     * @see FileHelper::ERROR_PARSING_CSV
322 322
     */
323
-    public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
323
+    public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array
324 324
     {
325 325
         $parser = self::createCSVParser($delimiter, $enclosure, '\\', $heading);
326 326
 
327
-        if($parser->parse($csv))
327
+        if ($parser->parse($csv))
328 328
         {
329 329
             return $parser->data;
330 330
         }
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
      * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
353 353
      * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
354 354
      */
355
-    public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
355
+    public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array
356 356
     {
357 357
         $content = self::readContents($filePath);
358 358
 
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
     public static function detectMimeType(string $fileName) : ?string
370 370
     {
371 371
         $ext = self::getExtension($fileName);
372
-        if(empty($ext)) {
372
+        if (empty($ext)) {
373 373
             return null;
374 374
         }
375 375
 
@@ -390,11 +390,11 @@  discard block
 block discarded – undo
390 390
      * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
391 391
      * @see FileHelper::ERROR_UNKNOWN_FILE_MIME_TYPE
392 392
      */
393
-    public static function sendFile(string $filePath, $fileName = null, bool $asAttachment=true)
393
+    public static function sendFile(string $filePath, $fileName = null, bool $asAttachment = true)
394 394
     {
395 395
         self::requireFileExists($filePath);
396 396
         
397
-        if(empty($fileName)) {
397
+        if (empty($fileName)) {
398 398
             $fileName = basename($filePath);
399 399
         }
400 400
 
@@ -412,10 +412,10 @@  discard block
 block discarded – undo
412 412
         
413 413
         header("Cache-Control: public", true);
414 414
         header("Content-Description: File Transfer", true);
415
-        header("Content-Type: " . $mime, true);
415
+        header("Content-Type: ".$mime, true);
416 416
 
417 417
         $disposition = 'inline';
418
-        if($asAttachment) {
418
+        if ($asAttachment) {
419 419
             $disposition = 'attachment';
420 420
         }
421 421
         
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
         requireCURL();
444 444
         
445 445
         $ch = curl_init();
446
-        if(!is_resource($ch)) 
446
+        if (!is_resource($ch)) 
447 447
         {
448 448
             throw new FileHelper_Exception(
449 449
                 'Could not initialize a new cURL instance.',
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
         
465 465
         $output = curl_exec($ch);
466 466
 
467
-        if($output === false) {
467
+        if ($output === false) {
468 468
             throw new FileHelper_Exception(
469 469
                 'Unable to open URL',
470 470
                 sprintf(
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
 
479 479
         curl_close($ch);
480 480
 
481
-        if(is_string($output)) 
481
+        if (is_string($output)) 
482 482
         {
483 483
             return $output;
484 484
         }
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
     */
501 501
     public static function isPHPFile($pathOrDirIterator)
502 502
     {
503
-    	if(self::getExtension($pathOrDirIterator) == 'php') {
503
+    	if (self::getExtension($pathOrDirIterator) == 'php') {
504 504
     		return true;
505 505
     	}
506 506
     	
@@ -517,14 +517,14 @@  discard block
 block discarded – undo
517 517
     */
518 518
     public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string
519 519
     {
520
-        if($pathOrDirIterator instanceof \DirectoryIterator) {
520
+        if ($pathOrDirIterator instanceof \DirectoryIterator) {
521 521
             $filename = $pathOrDirIterator->getFilename();
522 522
         } else {
523 523
             $filename = basename($pathOrDirIterator);
524 524
         }
525 525
          
526 526
         $ext = pathinfo($filename, PATHINFO_EXTENSION);
527
-        if($lowercase) {
527
+        if ($lowercase) {
528 528
         	$ext = mb_strtolower($ext);
529 529
         }
530 530
         
@@ -546,13 +546,13 @@  discard block
 block discarded – undo
546 546
     public static function getFilename($pathOrDirIterator, $extension = true)
547 547
     {
548 548
         $path = $pathOrDirIterator;
549
-    	if($pathOrDirIterator instanceof \DirectoryIterator) {
549
+    	if ($pathOrDirIterator instanceof \DirectoryIterator) {
550 550
     		$path = $pathOrDirIterator->getFilename();
551 551
     	}
552 552
     	
553 553
     	$path = self::normalizePath($path);
554 554
     	
555
-    	if(!$extension) {
555
+    	if (!$extension) {
556 556
     	    return pathinfo($path, PATHINFO_FILENAME);
557 557
     	}
558 558
     	
@@ -570,12 +570,12 @@  discard block
 block discarded – undo
570 570
     * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
571 571
     * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
572 572
     */ 
573
-    public static function parseJSONFile(string $file, $targetEncoding=null, $sourceEncoding=null)
573
+    public static function parseJSONFile(string $file, $targetEncoding = null, $sourceEncoding = null)
574 574
     {
575 575
         self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE);
576 576
         
577 577
         $content = file_get_contents($file);
578
-        if(!$content) {
578
+        if (!$content) {
579 579
             throw new FileHelper_Exception(
580 580
                 'Cannot get file contents',
581 581
                 sprintf(
@@ -586,12 +586,12 @@  discard block
 block discarded – undo
586 586
             );
587 587
         }
588 588
         
589
-        if(isset($targetEncoding)) {
589
+        if (isset($targetEncoding)) {
590 590
             $content = mb_convert_encoding($content, $targetEncoding, $sourceEncoding);
591 591
         }
592 592
         
593 593
         $json = json_decode($content, true);
594
-        if($json === false || $json === NULL) {
594
+        if ($json === false || $json === NULL) {
595 595
             throw new FileHelper_Exception(
596 596
                 'Cannot decode json data',
597 597
                 sprintf(
@@ -631,13 +631,13 @@  discard block
 block discarded – undo
631 631
         
632 632
         $name = str_replace(array_keys($replaces), array_values($replaces), $name);
633 633
         
634
-        while(strstr($name, '  ')) {
634
+        while (strstr($name, '  ')) {
635 635
             $name = str_replace('  ', ' ', $name);
636 636
         }
637 637
 
638 638
         $name = str_replace(array_keys($replaces), array_values($replaces), $name);
639 639
         
640
-        while(strstr($name, '..')) {
640
+        while (strstr($name, '..')) {
641 641
             $name = str_replace('..', '.', $name);
642 642
         }
643 643
         
@@ -669,7 +669,7 @@  discard block
 block discarded – undo
669 669
     * @return array An indexed array with files.
670 670
     * @see FileHelper::createFileFinder()
671 671
     */
672
-    public static function findHTMLFiles(string $targetFolder, array $options=array()) : array
672
+    public static function findHTMLFiles(string $targetFolder, array $options = array()) : array
673 673
     {
674 674
         return self::findFiles($targetFolder, array('html'), $options);
675 675
     }
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
     * @return array An indexed array of PHP files.
687 687
     * @see FileHelper::createFileFinder()
688 688
     */
689
-    public static function findPHPFiles(string $targetFolder, array $options=array()) : array
689
+    public static function findPHPFiles(string $targetFolder, array $options = array()) : array
690 690
     {
691 691
         return self::findFiles($targetFolder, array('php'), $options);
692 692
     }
@@ -706,22 +706,22 @@  discard block
 block discarded – undo
706 706
     * @return array
707 707
     * @see FileHelper::createFileFinder()
708 708
     */
709
-    public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array(), array $files=array()) : array
709
+    public static function findFiles(string $targetFolder, array $extensions = array(), array $options = array(), array $files = array()) : array
710 710
     {
711 711
         $finder = self::createFileFinder($targetFolder);
712 712
 
713 713
         $finder->setPathmodeStrip();
714 714
         
715
-        if(isset($options['relative-path']) && $options['relative-path'] === true) 
715
+        if (isset($options['relative-path']) && $options['relative-path'] === true) 
716 716
         {
717 717
             $finder->setPathmodeRelative();
718 718
         } 
719
-        else if(isset($options['absolute-path']) && $options['absolute-path'] === true)
719
+        else if (isset($options['absolute-path']) && $options['absolute-path'] === true)
720 720
         {
721 721
             $finder->setPathmodeAbsolute();
722 722
         }
723 723
         
724
-        if(isset($options['strip-extension'])) 
724
+        if (isset($options['strip-extension'])) 
725 725
         {
726 726
             $finder->stripExtensions();
727 727
         }
@@ -739,12 +739,12 @@  discard block
 block discarded – undo
739 739
     * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
740 740
     * @return string
741 741
     */
742
-    public static function removeExtension(string $filename, bool $keepPath=false) : string
742
+    public static function removeExtension(string $filename, bool $keepPath = false) : string
743 743
     {
744 744
         // normalize paths to allow windows style slashes even on nix servers
745 745
         $filename = self::normalizePath($filename);
746 746
         
747
-        if(!$keepPath) 
747
+        if (!$keepPath) 
748 748
         {
749 749
             return pathinfo($filename, PATHINFO_FILENAME);
750 750
         }
@@ -777,7 +777,7 @@  discard block
 block discarded – undo
777 777
     public static function detectUTFBom(string $filename) : ?string
778 778
     {
779 779
         $fp = fopen($filename, 'r');
780
-        if($fp === false) 
780
+        if ($fp === false) 
781 781
         {
782 782
             throw new FileHelper_Exception(
783 783
                 'Cannot open file for reading',
@@ -792,10 +792,10 @@  discard block
 block discarded – undo
792 792
 
793 793
         $boms = self::getUTFBOMs();
794 794
         
795
-        foreach($boms as $bom => $value) 
795
+        foreach ($boms as $bom => $value) 
796 796
         {
797 797
             $length = mb_strlen($value);
798
-            if(mb_substr($text, 0, $length) == $value) {
798
+            if (mb_substr($text, 0, $length) == $value) {
799 799
                 return $bom;
800 800
             }
801 801
         }
@@ -814,13 +814,13 @@  discard block
 block discarded – undo
814 814
     */
815 815
     public static function getUTFBOMs()
816 816
     {
817
-        if(!isset(self::$utfBoms)) {
817
+        if (!isset(self::$utfBoms)) {
818 818
             self::$utfBoms = array(
819
-                'UTF32-BE' => chr(0x00) . chr(0x00) . chr(0xFE) . chr(0xFF),
820
-                'UTF32-LE' => chr(0xFF) . chr(0xFE) . chr(0x00) . chr(0x00),
821
-                'UTF16-BE' => chr(0xFE) . chr(0xFF),
822
-                'UTF16-LE' => chr(0xFF) . chr(0xFE),
823
-                'UTF8' => chr(0xEF) . chr(0xBB) . chr(0xBF)
819
+                'UTF32-BE' => chr(0x00).chr(0x00).chr(0xFE).chr(0xFF),
820
+                'UTF32-LE' => chr(0xFF).chr(0xFE).chr(0x00).chr(0x00),
821
+                'UTF16-BE' => chr(0xFE).chr(0xFF),
822
+                'UTF16-LE' => chr(0xFF).chr(0xFE),
823
+                'UTF8' => chr(0xEF).chr(0xBB).chr(0xBF)
824 824
             );
825 825
         }
826 826
         
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
         $encodings = self::getKnownUnicodeEncodings();
842 842
 
843 843
         $keep = array();
844
-        foreach($encodings as $string) 
844
+        foreach ($encodings as $string) 
845 845
         {
846 846
             $withHyphen = str_replace('UTF', 'UTF-', $string);
847 847
             
@@ -888,16 +888,16 @@  discard block
 block discarded – undo
888 888
     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
889 889
     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
890 890
     */
891
-    public static function saveAsJSON($data, string $file, bool $pretty=false)
891
+    public static function saveAsJSON($data, string $file, bool $pretty = false)
892 892
     {
893 893
         $options = null;
894
-        if($pretty) {
894
+        if ($pretty) {
895 895
             $options = JSON_PRETTY_PRINT;
896 896
         }
897 897
         
898 898
         $json = json_encode($data, $options);
899 899
         
900
-        if($json===false) 
900
+        if ($json === false) 
901 901
         {
902 902
             $errorCode = json_last_error();
903 903
             
@@ -923,14 +923,14 @@  discard block
 block discarded – undo
923 923
     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
924 924
     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
925 925
     */
926
-    public static function saveFile(string $filePath, string $content='') : void
926
+    public static function saveFile(string $filePath, string $content = '') : void
927 927
     {
928 928
         $filePath = self::normalizePath($filePath);
929 929
         
930 930
         // target file already exists
931
-        if(file_exists($filePath))
931
+        if (file_exists($filePath))
932 932
         {
933
-            if(!is_writable($filePath))
933
+            if (!is_writable($filePath))
934 934
             {
935 935
                 throw new FileHelper_Exception(
936 936
                     sprintf('Cannot save file: target file [%s] exists, but is not writable.', basename($filePath)),
@@ -950,7 +950,7 @@  discard block
 block discarded – undo
950 950
             // create the folder as needed
951 951
             self::createFolder($targetFolder);
952 952
             
953
-            if(!is_writable($targetFolder)) 
953
+            if (!is_writable($targetFolder)) 
954 954
             {
955 955
                 throw new FileHelper_Exception(
956 956
                     sprintf('Cannot save file: target folder [%s] is not writable.', basename($targetFolder)),
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
             }
964 964
         }
965 965
         
966
-        if(is_dir($filePath))
966
+        if (is_dir($filePath))
967 967
         {
968 968
             throw new FileHelper_Exception(
969 969
                 sprintf('Cannot save file: the target [%s] is a directory.', basename($filePath)),
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
             );
976 976
         }
977 977
         
978
-        if(file_put_contents($filePath, $content) !== false) {
978
+        if (file_put_contents($filePath, $content) !== false) {
979 979
             return;
980 980
         }
981 981
         
@@ -1014,7 +1014,7 @@  discard block
 block discarded – undo
1014 1014
     {
1015 1015
         static $checked = array();
1016 1016
         
1017
-        if(isset($checked[$command])) {
1017
+        if (isset($checked[$command])) {
1018 1018
             return $checked[$command];
1019 1019
         }
1020 1020
         
@@ -1027,7 +1027,7 @@  discard block
 block discarded – undo
1027 1027
         
1028 1028
         $os = strtolower(PHP_OS_FAMILY);
1029 1029
         
1030
-        if(!isset($osCommands[$os])) 
1030
+        if (!isset($osCommands[$os])) 
1031 1031
         {
1032 1032
             throw new FileHelper_Exception(
1033 1033
                 'Unsupported OS for CLI commands',
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
             $pipes
1054 1054
         );
1055 1055
         
1056
-        if($process === false) {
1056
+        if ($process === false) {
1057 1057
             $checked[$command] = false;
1058 1058
             return false;
1059 1059
         }
@@ -1084,7 +1084,7 @@  discard block
 block discarded – undo
1084 1084
     */
1085 1085
     public static function checkPHPFileSyntax($path)
1086 1086
     {
1087
-        if(!self::canMakePHPCalls()) {
1087
+        if (!self::canMakePHPCalls()) {
1088 1088
             return true;
1089 1089
         }
1090 1090
         
@@ -1095,7 +1095,7 @@  discard block
 block discarded – undo
1095 1095
         // when the validation is successful, the first entry
1096 1096
         // in the array contains the success message. When it
1097 1097
         // is invalid, the first entry is always empty.
1098
-        if(!empty($output[0])) {
1098
+        if (!empty($output[0])) {
1099 1099
             return true;
1100 1100
         }
1101 1101
         
@@ -1116,7 +1116,7 @@  discard block
 block discarded – undo
1116 1116
     public static function getModifiedDate($path)
1117 1117
     {
1118 1118
         $time = filemtime($path);
1119
-        if($time !== false) {
1119
+        if ($time !== false) {
1120 1120
             $date = new \DateTime();
1121 1121
             $date->setTimestamp($time);
1122 1122
             return $date;
@@ -1145,7 +1145,7 @@  discard block
 block discarded – undo
1145 1145
     */
1146 1146
     public static function getSubfolders($targetFolder, $options = array())
1147 1147
     {
1148
-        if(!is_dir($targetFolder)) 
1148
+        if (!is_dir($targetFolder)) 
1149 1149
         {
1150 1150
             throw new FileHelper_Exception(
1151 1151
                 'Target folder does not exist',
@@ -1169,29 +1169,29 @@  discard block
 block discarded – undo
1169 1169
         
1170 1170
         $d = new \DirectoryIterator($targetFolder);
1171 1171
         
1172
-        foreach($d as $item) 
1172
+        foreach ($d as $item) 
1173 1173
         {
1174
-            if($item->isDir() && !$item->isDot()) 
1174
+            if ($item->isDir() && !$item->isDot()) 
1175 1175
             {
1176 1176
                 $name = $item->getFilename();
1177 1177
                 
1178
-                if(!$options['absolute-path']) {
1178
+                if (!$options['absolute-path']) {
1179 1179
                     $result[] = $name;
1180 1180
                 } else {
1181 1181
                     $result[] = $targetFolder.'/'.$name;
1182 1182
                 }
1183 1183
                 
1184
-                if(!$options['recursive']) 
1184
+                if (!$options['recursive']) 
1185 1185
                 {
1186 1186
                     continue;
1187 1187
                 }
1188 1188
                 
1189 1189
                 $subs = self::getSubfolders($targetFolder.'/'.$name, $options);
1190
-                foreach($subs as $sub) 
1190
+                foreach ($subs as $sub) 
1191 1191
                 {
1192 1192
                     $relative = $name.'/'.$sub;
1193 1193
                     
1194
-                    if(!$options['absolute-path']) {
1194
+                    if (!$options['absolute-path']) {
1195 1195
                         $result[] = $relative;
1196 1196
                     } else {
1197 1197
                         $result[] = $targetFolder.'/'.$relative;
@@ -1241,7 +1241,7 @@  discard block
 block discarded – undo
1241 1241
         $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size.
1242 1242
         $size = floatval(preg_replace('/[^0-9\.]/', '', $size)); // Remove the non-numeric characters from the size.
1243 1243
         
1244
-        if($unit) 
1244
+        if ($unit) 
1245 1245
         {
1246 1246
             // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by.
1247 1247
             return round($size * pow(1024, stripos('bkmgtpezy', $unit[0])));
@@ -1260,7 +1260,7 @@  discard block
 block discarded – undo
1260 1260
     * @param int $depth The folder depth to reduce the path to
1261 1261
     * @return string
1262 1262
     */
1263
-    public static function relativizePathByDepth(string $path, int $depth=2) : string
1263
+    public static function relativizePathByDepth(string $path, int $depth = 2) : string
1264 1264
     {
1265 1265
         $path = self::normalizePath($path);
1266 1266
         
@@ -1268,17 +1268,17 @@  discard block
 block discarded – undo
1268 1268
         $tokens = array_filter($tokens); // remove empty entries (trailing slash for example)
1269 1269
         $tokens = array_values($tokens); // re-index keys
1270 1270
         
1271
-        if(empty($tokens)) {
1271
+        if (empty($tokens)) {
1272 1272
             return '';
1273 1273
         }
1274 1274
         
1275 1275
         // remove the drive if present
1276
-        if(strstr($tokens[0], ':')) {
1276
+        if (strstr($tokens[0], ':')) {
1277 1277
             array_shift($tokens);
1278 1278
         }
1279 1279
         
1280 1280
         // path was only the drive
1281
-        if(count($tokens) == 0) {
1281
+        if (count($tokens) == 0) {
1282 1282
             return '';
1283 1283
         }
1284 1284
 
@@ -1287,8 +1287,8 @@  discard block
 block discarded – undo
1287 1287
         
1288 1288
         // reduce the path to the specified depth
1289 1289
         $length = count($tokens);
1290
-        if($length > $depth) {
1291
-            $tokens = array_slice($tokens, $length-$depth);
1290
+        if ($length > $depth) {
1291
+            $tokens = array_slice($tokens, $length - $depth);
1292 1292
         }
1293 1293
 
1294 1294
         // append the last element again
@@ -1336,14 +1336,14 @@  discard block
 block discarded – undo
1336 1336
     * 
1337 1337
     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1338 1338
     */
1339
-    public static function requireFileExists(string $path, ?int $errorCode=null) : string
1339
+    public static function requireFileExists(string $path, ?int $errorCode = null) : string
1340 1340
     {
1341 1341
         $result = realpath($path);
1342
-        if($result !== false) {
1342
+        if ($result !== false) {
1343 1343
             return $result;
1344 1344
         }
1345 1345
         
1346
-        if($errorCode === null) {
1346
+        if ($errorCode === null) {
1347 1347
             $errorCode = self::ERROR_FILE_DOES_NOT_EXIST;
1348 1348
         }
1349 1349
         
@@ -1354,15 +1354,15 @@  discard block
 block discarded – undo
1354 1354
         );
1355 1355
     }
1356 1356
 
1357
-    public static function requireFileReadable(string $path, ?int $errorCode=null) : string
1357
+    public static function requireFileReadable(string $path, ?int $errorCode = null) : string
1358 1358
     {
1359 1359
         $path = self::requireFileExists($path, $errorCode);
1360 1360
 
1361
-        if(is_readable($path)) {
1361
+        if (is_readable($path)) {
1362 1362
             return $path;
1363 1363
         }
1364 1364
 
1365
-        if($errorCode === null) {
1365
+        if ($errorCode === null) {
1366 1366
             $errorCode = self::ERROR_FILE_NOT_READABLE;
1367 1367
         }
1368 1368
 
@@ -1391,15 +1391,15 @@  discard block
 block discarded – undo
1391 1391
         
1392 1392
         $file = new \SplFileObject($path);
1393 1393
         
1394
-        if($file->eof()) {
1394
+        if ($file->eof()) {
1395 1395
             return '';
1396 1396
         }
1397 1397
         
1398
-        $targetLine = $lineNumber-1;
1398
+        $targetLine = $lineNumber - 1;
1399 1399
         
1400 1400
         $file->seek($targetLine);
1401 1401
         
1402
-        if($file->key() !== $targetLine) {
1402
+        if ($file->key() !== $targetLine) {
1403 1403
              return null;
1404 1404
         }
1405 1405
         
@@ -1425,7 +1425,7 @@  discard block
 block discarded – undo
1425 1425
         $number = $spl->key();
1426 1426
         
1427 1427
         // if seeking to the end the cursor is still at 0, there are no lines. 
1428
-        if($number === 0) 
1428
+        if ($number === 0) 
1429 1429
         {
1430 1430
             // since it's a very small file, to get reliable results,
1431 1431
             // we read its contents and use that to determine what
@@ -1433,13 +1433,13 @@  discard block
 block discarded – undo
1433 1433
             // that this is not pactical to solve with the SplFileObject.
1434 1434
             $content = file_get_contents($path);
1435 1435
             
1436
-            if(empty($content)) {
1436
+            if (empty($content)) {
1437 1437
                 return 0;
1438 1438
             }
1439 1439
         }
1440 1440
         
1441 1441
         // return the line number we were able to reach + 1 (key is zero-based)
1442
-        return $number+1;
1442
+        return $number + 1;
1443 1443
     }
1444 1444
     
1445 1445
    /**
@@ -1486,13 +1486,13 @@  discard block
 block discarded – undo
1486 1486
     * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1487 1487
     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1488 1488
     */
1489
-    public static function readLines(string $filePath, int $amount=0) : array
1489
+    public static function readLines(string $filePath, int $amount = 0) : array
1490 1490
     {
1491 1491
         self::requireFileExists($filePath);
1492 1492
         
1493 1493
         $fn = fopen($filePath, "r");
1494 1494
         
1495
-        if($fn === false) 
1495
+        if ($fn === false) 
1496 1496
         {
1497 1497
             throw new FileHelper_Exception(
1498 1498
                 'Could not open file for reading.',
@@ -1508,19 +1508,19 @@  discard block
 block discarded – undo
1508 1508
         $counter = 0;
1509 1509
         $first = true;
1510 1510
         
1511
-        while(!feof($fn)) 
1511
+        while (!feof($fn)) 
1512 1512
         {
1513 1513
             $counter++;
1514 1514
             
1515 1515
             $line = fgets($fn);
1516 1516
             
1517 1517
             // can happen with zero length files
1518
-            if($line === false) {
1518
+            if ($line === false) {
1519 1519
                 continue;
1520 1520
             }
1521 1521
             
1522 1522
             // the first line may contain a unicode BOM marker.
1523
-            if($first) 
1523
+            if ($first) 
1524 1524
             {
1525 1525
                 $line = ConvertHelper::stripUTFBom($line);
1526 1526
                 $first = false;
@@ -1528,7 +1528,7 @@  discard block
 block discarded – undo
1528 1528
             
1529 1529
             $result[] = $line;
1530 1530
             
1531
-            if($amount > 0 && $counter == $amount) {
1531
+            if ($amount > 0 && $counter == $amount) {
1532 1532
                 break;
1533 1533
             }
1534 1534
         }
@@ -1554,7 +1554,7 @@  discard block
 block discarded – undo
1554 1554
         
1555 1555
         $result = file_get_contents($filePath);
1556 1556
         
1557
-        if($result !== false) {
1557
+        if ($result !== false) {
1558 1558
             return $result;
1559 1559
         }
1560 1560
         
@@ -1584,7 +1584,7 @@  discard block
 block discarded – undo
1584 1584
     {
1585 1585
         $actual = realpath($path);
1586 1586
         
1587
-        if($actual === false) 
1587
+        if ($actual === false) 
1588 1588
         {
1589 1589
             throw new FileHelper_Exception(
1590 1590
                 'Folder does not exist',
@@ -1596,7 +1596,7 @@  discard block
 block discarded – undo
1596 1596
             );
1597 1597
         }
1598 1598
         
1599
-        if(is_dir($path)) 
1599
+        if (is_dir($path)) 
1600 1600
         {
1601 1601
             return self::normalizePath($actual);
1602 1602
         }
@@ -1618,7 +1618,7 @@  discard block
 block discarded – undo
1618 1618
      * @param string[] $paths
1619 1619
      * @return FileHelper_PathsReducer
1620 1620
      */
1621
-    public static function createPathsReducer(array $paths=array()) : FileHelper_PathsReducer
1621
+    public static function createPathsReducer(array $paths = array()) : FileHelper_PathsReducer
1622 1622
     {
1623 1623
         return new FileHelper_PathsReducer();
1624 1624
     }
Please login to merge, or discard this patch.