Passed
Push — master ( 089fbf...f223f6 )
by Sebastian
04:05
created
src/Request/RefreshParams.php 1 patch
Indentation   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -23,14 +23,14 @@  discard block
 block discarded – undo
23 23
 {
24 24
     use Traits_Optionable;
25 25
     
26
-   /**
27
-    * @var array<string,mixed>
28
-    */
26
+    /**
27
+     * @var array<string,mixed>
28
+     */
29 29
     private $overrides = array();
30 30
     
31
-   /**
32
-    * @var Request_RefreshParams_Exclude[]
33
-    */
31
+    /**
32
+     * @var Request_RefreshParams_Exclude[]
33
+     */
34 34
     private $excludes = array();
35 35
     
36 36
     public function getDefaultOptions() : array
@@ -41,27 +41,27 @@  discard block
 block discarded – undo
41 41
         );
42 42
     }
43 43
     
44
-   /**
45
-    * Whether to automatically exclude the session variable
46
-    * from the parameters.
47
-    * 
48
-    * @param bool $exclude
49
-    * @return Request_RefreshParams
50
-    */
44
+    /**
45
+     * Whether to automatically exclude the session variable
46
+     * from the parameters.
47
+     * 
48
+     * @param bool $exclude
49
+     * @return Request_RefreshParams
50
+     */
51 51
     public function setExcludeSessionName(bool $exclude=true) : Request_RefreshParams
52 52
     {
53 53
         $this->setOption('exclude-session-name', $exclude);
54 54
         return $this;
55 55
     }
56 56
     
57
-   /**
58
-    * Whether to automatically exclude the HTML_QuickForm2
59
-    * request variable used to track whether a form has been
60
-    * submitted.
61
-    * 
62
-    * @param bool $exclude
63
-    * @return Request_RefreshParams
64
-    */
57
+    /**
58
+     * Whether to automatically exclude the HTML_QuickForm2
59
+     * request variable used to track whether a form has been
60
+     * submitted.
61
+     * 
62
+     * @param bool $exclude
63
+     * @return Request_RefreshParams
64
+     */
65 65
     public function setExcludeQuickform(bool $exclude) : Request_RefreshParams
66 66
     {
67 67
         $this->setOption('exclude-quickform-submitter', $exclude);
@@ -78,20 +78,20 @@  discard block
 block discarded – undo
78 78
         return $this;
79 79
     }
80 80
     
81
-   /**
82
-    * Exclude a request using a callback function.
83
-    * 
84
-    * The function gets two parameters:
85
-    * 
86
-    * - The name of the request parameter
87
-    * - The value of the request parameter
88
-    * 
89
-    * If the callback returns a boolean true, the
90
-    * parameter will be excluded.
91
-    * 
92
-    * @param callable $callback
93
-    * @return Request_RefreshParams
94
-    */
81
+    /**
82
+     * Exclude a request using a callback function.
83
+     * 
84
+     * The function gets two parameters:
85
+     * 
86
+     * - The name of the request parameter
87
+     * - The value of the request parameter
88
+     * 
89
+     * If the callback returns a boolean true, the
90
+     * parameter will be excluded.
91
+     * 
92
+     * @param callable $callback
93
+     * @return Request_RefreshParams
94
+     */
95 95
     public function excludeParamByCallback($callback) : Request_RefreshParams
96 96
     {
97 97
         $this->excludes[] = new Request_RefreshParams_Exclude_Callback($callback);
@@ -99,12 +99,12 @@  discard block
 block discarded – undo
99 99
         return $this;
100 100
     }
101 101
     
102
-   /**
103
-    * Excludes a request parameter by name.
104
-    * 
105
-    * @param array $paramNames
106
-    * @return Request_RefreshParams
107
-    */
102
+    /**
103
+     * Excludes a request parameter by name.
104
+     * 
105
+     * @param array $paramNames
106
+     * @return Request_RefreshParams
107
+     */
108 108
     public function excludeParamsByName(array $paramNames) : Request_RefreshParams
109 109
     {
110 110
         foreach($paramNames as $name)
@@ -115,15 +115,15 @@  discard block
 block discarded – undo
115 115
         return $this;
116 116
     }
117 117
     
118
-   /**
119
-    * Overrides a parameter: even if it exists, this
120
-    * value will be used instead - even if it is on 
121
-    * the list of excluded parameters.
122
-    * 
123
-    * @param string $paramName
124
-    * @param mixed $paramValue
125
-    * @return Request_RefreshParams
126
-    */
118
+    /**
119
+     * Overrides a parameter: even if it exists, this
120
+     * value will be used instead - even if it is on 
121
+     * the list of excluded parameters.
122
+     * 
123
+     * @param string $paramName
124
+     * @param mixed $paramValue
125
+     * @return Request_RefreshParams
126
+     */
127 127
     public function overrideParam(string $paramName, $paramValue) : Request_RefreshParams
128 128
     {
129 129
         $this->overrides[$paramName] = $paramValue;
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
         return $this;
132 132
     }
133 133
     
134
-   /**
135
-    * Overrides an array of parameters. 
136
-    * 
137
-    * @param array $params
138
-    * @return Request_RefreshParams
139
-    */
134
+    /**
135
+     * Overrides an array of parameters. 
136
+     * 
137
+     * @param array $params
138
+     * @return Request_RefreshParams
139
+     */
140 140
     public function overrideParams(array $params) : Request_RefreshParams
141 141
     {
142 142
         foreach($params as $name => $value)
@@ -147,14 +147,14 @@  discard block
 block discarded – undo
147 147
         return $this;
148 148
     }
149 149
     
150
-   /**
151
-    * Resolves all the parameter exclusions that should
152
-    * be applied to the list of parameters. This includes
153
-    * the manually added exclusions and the dynamic exclusions
154
-    * like the session name.
155
-    * 
156
-    * @return Request_RefreshParams_Exclude[]
157
-    */
150
+    /**
151
+     * Resolves all the parameter exclusions that should
152
+     * be applied to the list of parameters. This includes
153
+     * the manually added exclusions and the dynamic exclusions
154
+     * like the session name.
155
+     * 
156
+     * @return Request_RefreshParams_Exclude[]
157
+     */
158 158
     private function resolveExcludes() : array
159 159
     {
160 160
         $excludes = $this->excludes;
@@ -165,12 +165,12 @@  discard block
 block discarded – undo
165 165
         return $excludes;
166 166
     }
167 167
     
168
-   /**
169
-    * Automatically excludes the session name from the
170
-    * parameters, if present.
171
-    * 
172
-    * @param Request_RefreshParams_Exclude[] $excludes
173
-    */
168
+    /**
169
+     * Automatically excludes the session name from the
170
+     * parameters, if present.
171
+     * 
172
+     * @param Request_RefreshParams_Exclude[] $excludes
173
+     */
174 174
     private function autoExcludeSessionName(array &$excludes) : void
175 175
     {
176 176
         if($this->getBoolOption('exclude-session-name'))
@@ -179,12 +179,12 @@  discard block
 block discarded – undo
179 179
         }
180 180
     }
181 181
    
182
-   /**
183
-    * Automatically excludes the HTML_QuickForm2 submit
184
-    * tracking variable, when enabled.
185
-    * 
186
-    * @param Request_RefreshParams_Exclude[] $excludes
187
-    */
182
+    /**
183
+     * Automatically excludes the HTML_QuickForm2 submit
184
+     * tracking variable, when enabled.
185
+     * 
186
+     * @param Request_RefreshParams_Exclude[] $excludes
187
+     */
188 188
     private function autoExcludeQuickform(array &$excludes) : void
189 189
     {
190 190
         if($this->getBoolOption('exclude-quickform-submitter'))
@@ -196,12 +196,12 @@  discard block
 block discarded – undo
196 196
         }
197 197
     }
198 198
     
199
-   /**
200
-    * Retrieves the list of parameters matching the 
201
-    * current settings.
202
-    * 
203
-    * @return array<string,mixed>
204
-    */
199
+    /**
200
+     * Retrieves the list of parameters matching the 
201
+     * current settings.
202
+     * 
203
+     * @return array<string,mixed>
204
+     */
205 205
     public function getParams() : array
206 206
     {
207 207
         $params = $this->removeExcluded($_REQUEST);
@@ -217,12 +217,12 @@  discard block
 block discarded – undo
217 217
         return $params;
218 218
     }
219 219
     
220
-   /**
221
-    * Removes all excluded parameters from the array.
222
-    * 
223
-    * @param array<string,mixed> $params
224
-    * @return array<string,mixed>
225
-    */
220
+    /**
221
+     * Removes all excluded parameters from the array.
222
+     * 
223
+     * @param array<string,mixed> $params
224
+     * @return array<string,mixed>
225
+     */
226 226
     private function removeExcluded(array $params) : array
227 227
     {
228 228
         $result = array();
@@ -240,14 +240,14 @@  discard block
 block discarded – undo
240 240
         return $result;
241 241
     }
242 242
     
243
-   /**
244
-    * Checks all configured exclusions to see if the 
245
-    * parameter should be excluded or not.
246
-    * 
247
-    * @param string $paramName
248
-    * @param mixed $paramValue
249
-    * @return bool
250
-    */
243
+    /**
244
+     * Checks all configured exclusions to see if the 
245
+     * parameter should be excluded or not.
246
+     * 
247
+     * @param string $paramName
248
+     * @param mixed $paramValue
249
+     * @return bool
250
+     */
251 251
     public function isExcluded(string $paramName, $paramValue) : bool
252 252
     {
253 253
         $excludes = $this->resolveExcludes();
Please login to merge, or discard this patch.
src/URLInfo.php 1 patch
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.
src/URLInfo/ConnectionTester.php 1 patch
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.
src/RequestHelper/Response.php 1 patch
Indentation   +65 added lines, -65 removed lines patch added patch discarded remove patch
@@ -19,51 +19,51 @@  discard block
 block discarded – undo
19 19
  */
20 20
 class RequestHelper_Response
21 21
 {
22
-   /**
23
-    * @var RequestHelper
24
-    */
22
+    /**
23
+     * @var RequestHelper
24
+     */
25 25
     protected $request;
26 26
     
27
-   /**
28
-    * @var string
29
-    */
27
+    /**
28
+     * @var string
29
+     */
30 30
     protected $body = '';
31 31
     
32
-   /**
33
-    * @var array
34
-    */
32
+    /**
33
+     * @var array
34
+     */
35 35
     protected $info;
36 36
     
37
-   /**
38
-    * @var bool
39
-    */
37
+    /**
38
+     * @var bool
39
+     */
40 40
     protected $isError = false;
41 41
     
42
-   /**
43
-    * @var string
44
-    */
42
+    /**
43
+     * @var string
44
+     */
45 45
     protected $errorMessage = '';
46 46
     
47
-   /**
48
-    * @var integer
49
-    */
47
+    /**
48
+     * @var integer
49
+     */
50 50
     protected $errorCode = 0;
51 51
     
52
-   /**
53
-    * @param RequestHelper $helper
54
-    * @param array $info The CURL info array from curl_getinfo().
55
-    */
52
+    /**
53
+     * @param RequestHelper $helper
54
+     * @param array $info The CURL info array from curl_getinfo().
55
+     */
56 56
     public function __construct(RequestHelper $helper, array $info)
57 57
     {
58 58
         $this->request = $helper;
59 59
         $this->info = $info;
60 60
     }
61 61
     
62
-   /**
63
-    * Retrieves the request instance that initiated the request.
64
-    *  
65
-    * @return RequestHelper
66
-    */
62
+    /**
63
+     * Retrieves the request instance that initiated the request.
64
+     *  
65
+     * @return RequestHelper
66
+     */
67 67
     public function getRequest() : RequestHelper
68 68
     {
69 69
         return $this->request;
@@ -84,79 +84,79 @@  discard block
 block discarded – undo
84 84
         return $this;
85 85
     }
86 86
     
87
-   /**
88
-    * Whether an error occurred in the request.
89
-    * @return bool
90
-    */
87
+    /**
88
+     * Whether an error occurred in the request.
89
+     * @return bool
90
+     */
91 91
     public function isError() : bool
92 92
     {
93 93
         return $this->isError;
94 94
     }
95 95
     
96
-   /**
97
-    * Whether the request timed out.
98
-    * @return bool
99
-    */
96
+    /**
97
+     * Whether the request timed out.
98
+     * @return bool
99
+     */
100 100
     public function isTimeout() : bool
101 101
     {
102 102
         return $this->errorCode === RequestHelper_CURL::OPERATION_TIMEDOUT;
103 103
     }
104 104
     
105
-   /**
106
-    * Retrieves the native error message, if an error occurred.
107
-    * @return string
108
-    */
105
+    /**
106
+     * Retrieves the native error message, if an error occurred.
107
+     * @return string
108
+     */
109 109
     public function getErrorMessage() : string
110 110
     {
111 111
         return $this->errorMessage;
112 112
     }
113 113
     
114
-   /**
115
-    * Retrieves the native CURL error code, if an error occurred.
116
-    * @return int
117
-    * @see RequestHelper_CURL For a list of error codes.
118
-    */
114
+    /**
115
+     * Retrieves the native CURL error code, if an error occurred.
116
+     * @return int
117
+     * @see RequestHelper_CURL For a list of error codes.
118
+     */
119 119
     public function getErrorCode() : int
120 120
     {
121 121
         return $this->errorCode;
122 122
     }
123 123
     
124
-   /**
125
-    * Retrieves the full body of the request.
126
-    * 
127
-    * @return string
128
-    */
124
+    /**
125
+     * Retrieves the full body of the request.
126
+     * 
127
+     * @return string
128
+     */
129 129
     public function getRequestBody() : string
130 130
     {
131 131
         return $this->request->getBody();
132 132
     }
133 133
     
134
-   /**
135
-    * Retrieves the body of the response, if any.
136
-    * 
137
-    * @return string
138
-    */
134
+    /**
135
+     * Retrieves the body of the response, if any.
136
+     * 
137
+     * @return string
138
+     */
139 139
     public function getResponseBody() : string
140 140
     {
141 141
         return $this->body;
142 142
     }
143 143
     
144
-   /**
145
-    * The response HTTP code.
146
-    * 
147
-    * @return int The code, or 0 if none was sent (on error).
148
-    */
144
+    /**
145
+     * The response HTTP code.
146
+     * 
147
+     * @return int The code, or 0 if none was sent (on error).
148
+     */
149 149
     public function getCode() : int
150 150
     {
151 151
         return intval($this->getInfoKey('http_code'));
152 152
     }
153 153
     
154
-   /**
155
-    * Retrieves the actual headers that were sent in the request:
156
-    * one header by entry in the indexed array.
157
-    * 
158
-    * @return array
159
-    */
154
+    /**
155
+     * Retrieves the actual headers that were sent in the request:
156
+     * one header by entry in the indexed array.
157
+     * 
158
+     * @return array
159
+     */
160 160
     public function getHeaders() : array
161 161
     {
162 162
         return ConvertHelper::explodeTrim("\n", $this->getInfoKey('request_header'));
Please login to merge, or discard this patch.
src/FileHelper.php 1 patch
Indentation   +423 added lines, -423 removed lines patch added patch discarded remove patch
@@ -50,32 +50,32 @@  discard block
 block discarded – undo
50 50
     const ERROR_PATH_IS_NOT_A_FOLDER = 340034;
51 51
     const ERROR_CANNOT_WRITE_TO_FOLDER = 340035;
52 52
     
53
-   /**
54
-    * Opens a serialized file and returns the unserialized data.
55
-    * 
56
-    * @param string $file
57
-    * @throws FileHelper_Exception
58
-    * @return array
59
-    * @deprecated Use parseSerializedFile() instead.
60
-    * @see FileHelper::parseSerializedFile()
61
-    */
53
+    /**
54
+     * Opens a serialized file and returns the unserialized data.
55
+     * 
56
+     * @param string $file
57
+     * @throws FileHelper_Exception
58
+     * @return array
59
+     * @deprecated Use parseSerializedFile() instead.
60
+     * @see FileHelper::parseSerializedFile()
61
+     */
62 62
     public static function openUnserialized(string $file) : array
63 63
     {
64 64
         return self::parseSerializedFile($file);
65 65
     }
66 66
 
67
-   /**
68
-    * Opens a serialized file and returns the unserialized data.
69
-    *
70
-    * @param string $file
71
-    * @throws FileHelper_Exception
72
-    * @return array
73
-    * @see FileHelper::parseSerializedFile()
74
-    * 
75
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
76
-    * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ
77
-    * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED
78
-    */
67
+    /**
68
+     * Opens a serialized file and returns the unserialized data.
69
+     *
70
+     * @param string $file
71
+     * @throws FileHelper_Exception
72
+     * @return array
73
+     * @see FileHelper::parseSerializedFile()
74
+     * 
75
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
76
+     * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ
77
+     * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED
78
+     */
79 79
     public static function parseSerializedFile(string $file)
80 80
     {
81 81
         self::requireFileExists($file);
@@ -144,13 +144,13 @@  discard block
 block discarded – undo
144 144
         return rmdir($rootFolder);
145 145
     }
146 146
     
147
-   /**
148
-    * Create a folder, if it does not exist yet.
149
-    *  
150
-    * @param string $path
151
-    * @throws FileHelper_Exception
152
-    * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
153
-    */
147
+    /**
148
+     * Create a folder, if it does not exist yet.
149
+     *  
150
+     * @param string $path
151
+     * @throws FileHelper_Exception
152
+     * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
153
+     */
154 154
     public static function createFolder($path)
155 155
     {
156 156
         if(is_dir($path) || mkdir($path, 0777, true)) {
@@ -197,22 +197,22 @@  discard block
 block discarded – undo
197 197
         }
198 198
     }
199 199
     
200
-   /**
201
-    * Copies a file to the target location. Includes checks
202
-    * for most error sources, like the source file not being
203
-    * readable. Automatically creates the target folder if it
204
-    * does not exist yet.
205
-    * 
206
-    * @param string $sourcePath
207
-    * @param string $targetPath
208
-    * @throws FileHelper_Exception
209
-    * 
210
-    * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
211
-    * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND
212
-    * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE
213
-    * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE
214
-    * @see FileHelper::ERROR_CANNOT_COPY_FILE
215
-    */
200
+    /**
201
+     * Copies a file to the target location. Includes checks
202
+     * for most error sources, like the source file not being
203
+     * readable. Automatically creates the target folder if it
204
+     * does not exist yet.
205
+     * 
206
+     * @param string $sourcePath
207
+     * @param string $targetPath
208
+     * @throws FileHelper_Exception
209
+     * 
210
+     * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER
211
+     * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND
212
+     * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE
213
+     * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE
214
+     * @see FileHelper::ERROR_CANNOT_COPY_FILE
215
+     */
216 216
     public static function copyFile($sourcePath, $targetPath)
217 217
     {
218 218
         self::requireFileExists($sourcePath, self::ERROR_SOURCE_FILE_NOT_FOUND);
@@ -263,15 +263,15 @@  discard block
 block discarded – undo
263 263
         );
264 264
     }
265 265
     
266
-   /**
267
-    * Deletes the target file. Ignored if it cannot be found,
268
-    * and throws an exception if it fails.
269
-    * 
270
-    * @param string $filePath
271
-    * @throws FileHelper_Exception
272
-    * 
273
-    * @see FileHelper::ERROR_CANNOT_DELETE_FILE
274
-    */
266
+    /**
267
+     * Deletes the target file. Ignored if it cannot be found,
268
+     * and throws an exception if it fails.
269
+     * 
270
+     * @param string $filePath
271
+     * @throws FileHelper_Exception
272
+     * 
273
+     * @see FileHelper::ERROR_CANNOT_DELETE_FILE
274
+     */
275 275
     public static function deleteFile(string $filePath) : void
276 276
     {
277 277
         if(!file_exists($filePath)) {
@@ -293,15 +293,15 @@  discard block
 block discarded – undo
293 293
     }
294 294
 
295 295
     /**
296
-    * Creates a new CSV parser instance and returns it.
297
-    * 
298
-    * @param string $delimiter
299
-    * @param string $enclosure
300
-    * @param string $escape
301
-    * @param bool $heading
302
-    * @return \parseCSV
303
-    * @todo Move this to the CSV helper.
304
-    */
296
+     * Creates a new CSV parser instance and returns it.
297
+     * 
298
+     * @param string $delimiter
299
+     * @param string $enclosure
300
+     * @param string $escape
301
+     * @param bool $heading
302
+     * @return \parseCSV
303
+     * @todo Move this to the CSV helper.
304
+     */
305 305
     public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : \parseCSV
306 306
     {
307 307
         if($delimiter==='') { $delimiter = ';'; }
@@ -316,23 +316,23 @@  discard block
 block discarded – undo
316 316
         return $parser;
317 317
     }
318 318
 
319
-   /**
320
-    * Parses all lines in the specified string and returns an
321
-    * indexed array with all csv values in each line.
322
-    *
323
-    * @param string $csv
324
-    * @param string $delimiter
325
-    * @param string $enclosure
326
-    * @param string $escape
327
-    * @param bool $heading
328
-    * @return array
329
-    * @throws FileHelper_Exception
330
-    * 
331
-    * @todo Move this to the CSVHelper.
332
-    *
333
-    * @see parseCSVFile()
334
-    * @see FileHelper::ERROR_PARSING_CSV
335
-    */
319
+    /**
320
+     * Parses all lines in the specified string and returns an
321
+     * indexed array with all csv values in each line.
322
+     *
323
+     * @param string $csv
324
+     * @param string $delimiter
325
+     * @param string $enclosure
326
+     * @param string $escape
327
+     * @param bool $heading
328
+     * @return array
329
+     * @throws FileHelper_Exception
330
+     * 
331
+     * @todo Move this to the CSVHelper.
332
+     *
333
+     * @see parseCSVFile()
334
+     * @see FileHelper::ERROR_PARSING_CSV
335
+     */
336 336
     public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array
337 337
     {
338 338
         $parser = self::createCSVParser($delimiter, $enclosure, $escape, $heading);
@@ -504,31 +504,31 @@  discard block
 block discarded – undo
504 504
         );
505 505
     }
506 506
     
507
-   /**
508
-    * Verifies whether the target file is a PHP file. The path
509
-    * to the file can be a path to a file as a string, or a 
510
-    * DirectoryIterator object instance.
511
-    * 
512
-    * @param string|\DirectoryIterator $pathOrDirIterator
513
-    * @return boolean
514
-    */
507
+    /**
508
+     * Verifies whether the target file is a PHP file. The path
509
+     * to the file can be a path to a file as a string, or a 
510
+     * DirectoryIterator object instance.
511
+     * 
512
+     * @param string|\DirectoryIterator $pathOrDirIterator
513
+     * @return boolean
514
+     */
515 515
     public static function isPHPFile($pathOrDirIterator)
516 516
     {
517
-    	if(self::getExtension($pathOrDirIterator) == 'php') {
518
-    		return true;
519
-    	}
517
+        if(self::getExtension($pathOrDirIterator) == 'php') {
518
+            return true;
519
+        }
520 520
     	
521
-    	return false;
521
+        return false;
522 522
     }
523 523
     
524
-   /**
525
-    * Retrieves the extension of the specified file. Can be a path
526
-    * to a file as a string, or a DirectoryIterator object instance.
527
-    * 
528
-    * @param string|\DirectoryIterator $pathOrDirIterator
529
-    * @param bool $lowercase
530
-    * @return string
531
-    */
524
+    /**
525
+     * Retrieves the extension of the specified file. Can be a path
526
+     * to a file as a string, or a DirectoryIterator object instance.
527
+     * 
528
+     * @param string|\DirectoryIterator $pathOrDirIterator
529
+     * @param bool $lowercase
530
+     * @return string
531
+     */
532 532
     public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string
533 533
     {
534 534
         if($pathOrDirIterator instanceof \DirectoryIterator) {
@@ -539,51 +539,51 @@  discard block
 block discarded – undo
539 539
          
540 540
         $ext = pathinfo($filename, PATHINFO_EXTENSION);
541 541
         if($lowercase) {
542
-        	$ext = mb_strtolower($ext);
542
+            $ext = mb_strtolower($ext);
543 543
         }
544 544
         
545 545
         return $ext;
546 546
     }
547 547
     
548
-   /**
549
-    * Retrieves the file name from a path, with or without extension.
550
-    * The path to the file can be a string, or a DirectoryIterator object
551
-    * instance.
552
-    * 
553
-    * In case of folders, behaves like the pathinfo function: returns
554
-    * the name of the folder.
555
-    * 
556
-    * @param string|\DirectoryIterator $pathOrDirIterator
557
-    * @param bool $extension
558
-    * @return string
559
-    */
548
+    /**
549
+     * Retrieves the file name from a path, with or without extension.
550
+     * The path to the file can be a string, or a DirectoryIterator object
551
+     * instance.
552
+     * 
553
+     * In case of folders, behaves like the pathinfo function: returns
554
+     * the name of the folder.
555
+     * 
556
+     * @param string|\DirectoryIterator $pathOrDirIterator
557
+     * @param bool $extension
558
+     * @return string
559
+     */
560 560
     public static function getFilename($pathOrDirIterator, $extension = true)
561 561
     {
562 562
         $path = $pathOrDirIterator;
563
-    	if($pathOrDirIterator instanceof \DirectoryIterator) {
564
-    		$path = $pathOrDirIterator->getFilename();
565
-    	}
563
+        if($pathOrDirIterator instanceof \DirectoryIterator) {
564
+            $path = $pathOrDirIterator->getFilename();
565
+        }
566 566
     	
567
-    	$path = self::normalizePath($path);
567
+        $path = self::normalizePath($path);
568 568
     	
569
-    	if(!$extension) {
570
-    	    return pathinfo($path, PATHINFO_FILENAME);
571
-    	}
569
+        if(!$extension) {
570
+            return pathinfo($path, PATHINFO_FILENAME);
571
+        }
572 572
     	
573
-    	return pathinfo($path, PATHINFO_BASENAME); 
573
+        return pathinfo($path, PATHINFO_BASENAME); 
574 574
     }
575 575
    
576
-   /**
577
-    * Tries to read the contents of the target file and
578
-    * treat it as JSON to return the decoded JSON data.
579
-    * 
580
-    * @param string $file
581
-    * @throws FileHelper_Exception
582
-    * @return array
583
-    * 
584
-    * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
585
-    * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
586
-    */ 
576
+    /**
577
+     * Tries to read the contents of the target file and
578
+     * treat it as JSON to return the decoded JSON data.
579
+     * 
580
+     * @param string $file
581
+     * @throws FileHelper_Exception
582
+     * @return array
583
+     * 
584
+     * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE
585
+     * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE
586
+     */ 
587 587
     public static function parseJSONFile(string $file, $targetEncoding=null, $sourceEncoding=null)
588 588
     {
589 589
         self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE);
@@ -619,16 +619,16 @@  discard block
 block discarded – undo
619 619
         return $json;
620 620
     }
621 621
     
622
-   /**
623
-    * Corrects common formatting mistakes when users enter
624
-    * file names, like too many spaces, dots and the like.
625
-    * 
626
-    * NOTE: if the file name contains a path, the path is
627
-    * stripped, leaving only the file name.
628
-    * 
629
-    * @param string $name
630
-    * @return string
631
-    */
622
+    /**
623
+     * Corrects common formatting mistakes when users enter
624
+     * file names, like too many spaces, dots and the like.
625
+     * 
626
+     * NOTE: if the file name contains a path, the path is
627
+     * stripped, leaving only the file name.
628
+     * 
629
+     * @param string $name
630
+     * @return string
631
+     */
632 632
     public static function fixFileName(string $name) : string
633 633
     {
634 634
         $name = trim($name);
@@ -658,68 +658,68 @@  discard block
 block discarded – undo
658 658
         return $name;
659 659
     }
660 660
     
661
-   /**
662
-    * Creates an instance of the file finder, which is an easier
663
-    * alternative to the other manual findFile methods, since all
664
-    * options can be set by chaining.
665
-    * 
666
-    * @param string $path
667
-    * @return FileHelper_FileFinder
668
-    */
661
+    /**
662
+     * Creates an instance of the file finder, which is an easier
663
+     * alternative to the other manual findFile methods, since all
664
+     * options can be set by chaining.
665
+     * 
666
+     * @param string $path
667
+     * @return FileHelper_FileFinder
668
+     */
669 669
     public static function createFileFinder(string $path) : FileHelper_FileFinder
670 670
     {
671 671
         return new FileHelper_FileFinder($path);
672 672
     }
673 673
     
674
-   /**
675
-    * Searches for all HTML files in the target folder.
676
-    * 
677
-    * NOTE: This method only exists for backwards compatibility.
678
-    * Use the `createFileFinder()` method instead, which offers
679
-    * an object oriented interface that is much easier to use.
680
-    * 
681
-    * @param string $targetFolder
682
-    * @param array $options
683
-    * @return array An indexed array with files.
684
-    * @see FileHelper::createFileFinder()
685
-    */
674
+    /**
675
+     * Searches for all HTML files in the target folder.
676
+     * 
677
+     * NOTE: This method only exists for backwards compatibility.
678
+     * Use the `createFileFinder()` method instead, which offers
679
+     * an object oriented interface that is much easier to use.
680
+     * 
681
+     * @param string $targetFolder
682
+     * @param array $options
683
+     * @return array An indexed array with files.
684
+     * @see FileHelper::createFileFinder()
685
+     */
686 686
     public static function findHTMLFiles(string $targetFolder, array $options=array()) : array
687 687
     {
688 688
         return self::findFiles($targetFolder, array('html'), $options);
689 689
     }
690 690
 
691
-   /**
692
-    * Searches for all PHP files in the target folder.
693
-    * 
694
-    * NOTE: This method only exists for backwards compatibility.
695
-    * Use the `createFileFinder()` method instead, which offers
696
-    * an object oriented interface that is much easier to use.
697
-    * 
698
-    * @param string $targetFolder
699
-    * @param array $options
700
-    * @return array An indexed array of PHP files.
701
-    * @see FileHelper::createFileFinder()
702
-    */
691
+    /**
692
+     * Searches for all PHP files in the target folder.
693
+     * 
694
+     * NOTE: This method only exists for backwards compatibility.
695
+     * Use the `createFileFinder()` method instead, which offers
696
+     * an object oriented interface that is much easier to use.
697
+     * 
698
+     * @param string $targetFolder
699
+     * @param array $options
700
+     * @return array An indexed array of PHP files.
701
+     * @see FileHelper::createFileFinder()
702
+     */
703 703
     public static function findPHPFiles(string $targetFolder, array $options=array()) : array
704 704
     {
705 705
         return self::findFiles($targetFolder, array('php'), $options);
706 706
     }
707 707
     
708
-   /**
709
-    * Finds files according to the specified options.
710
-    * 
711
-    * NOTE: This method only exists for backwards compatibility.
712
-    * Use the `createFileFinder()` method instead, which offers
713
-    * an object oriented interface that is much easier to use.
714
-    *  
715
-    * @param string $targetFolder
716
-    * @param array $extensions
717
-    * @param array $options
718
-    * @param array $files
719
-    * @throws FileHelper_Exception
720
-    * @return array
721
-    * @see FileHelper::createFileFinder()
722
-    */
708
+    /**
709
+     * Finds files according to the specified options.
710
+     * 
711
+     * NOTE: This method only exists for backwards compatibility.
712
+     * Use the `createFileFinder()` method instead, which offers
713
+     * an object oriented interface that is much easier to use.
714
+     *  
715
+     * @param string $targetFolder
716
+     * @param array $extensions
717
+     * @param array $options
718
+     * @param array $files
719
+     * @throws FileHelper_Exception
720
+     * @return array
721
+     * @see FileHelper::createFileFinder()
722
+     */
723 723
     public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array(), array $files=array()) : array
724 724
     {
725 725
         $finder = self::createFileFinder($targetFolder);
@@ -745,14 +745,14 @@  discard block
 block discarded – undo
745 745
         return $finder->getAll();
746 746
     }
747 747
 
748
-   /**
749
-    * Removes the extension from the specified path or file name,
750
-    * if any, and returns the name without the extension.
751
-    * 
752
-    * @param string $filename
753
-    * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
754
-    * @return string
755
-    */
748
+    /**
749
+     * Removes the extension from the specified path or file name,
750
+     * if any, and returns the name without the extension.
751
+     * 
752
+     * @param string $filename
753
+     * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to.
754
+     * @return string
755
+     */
756 756
     public static function removeExtension(string $filename, bool $keepPath=false) : string
757 757
     {
758 758
         // normalize paths to allow windows style slashes even on nix servers
@@ -772,22 +772,22 @@  discard block
 block discarded – undo
772 772
         return implode('/', $parts);
773 773
     }
774 774
     
775
-   /**
776
-    * Detects the UTF BOM in the target file, if any. Returns
777
-    * the encoding matching the BOM, which can be any of the
778
-    * following:
779
-    * 
780
-    * <ul>
781
-    * <li>UTF32-BE</li>
782
-    * <li>UTF32-LE</li>
783
-    * <li>UTF16-BE</li>
784
-    * <li>UTF16-LE</li>
785
-    * <li>UTF8</li>
786
-    * </ul>
787
-    * 
788
-    * @param string $filename
789
-    * @return string|NULL
790
-    */
775
+    /**
776
+     * Detects the UTF BOM in the target file, if any. Returns
777
+     * the encoding matching the BOM, which can be any of the
778
+     * following:
779
+     * 
780
+     * <ul>
781
+     * <li>UTF32-BE</li>
782
+     * <li>UTF32-LE</li>
783
+     * <li>UTF16-BE</li>
784
+     * <li>UTF16-LE</li>
785
+     * <li>UTF8</li>
786
+     * </ul>
787
+     * 
788
+     * @param string $filename
789
+     * @return string|NULL
790
+     */
791 791
     public static function detectUTFBom(string $filename) : ?string
792 792
     {
793 793
         $fp = fopen($filename, 'r');
@@ -819,13 +819,13 @@  discard block
 block discarded – undo
819 819
     
820 820
     protected static $utfBoms;
821 821
     
822
-   /**
823
-    * Retrieves a list of all UTF byte order mark character
824
-    * sequences, as an assocative array with UTF encoding => bom sequence
825
-    * pairs.
826
-    * 
827
-    * @return array
828
-    */
822
+    /**
823
+     * Retrieves a list of all UTF byte order mark character
824
+     * sequences, as an assocative array with UTF encoding => bom sequence
825
+     * pairs.
826
+     * 
827
+     * @return array
828
+     */
829 829
     public static function getUTFBOMs()
830 830
     {
831 831
         if(!isset(self::$utfBoms)) {
@@ -841,15 +841,15 @@  discard block
 block discarded – undo
841 841
         return self::$utfBoms;
842 842
     }
843 843
     
844
-   /**
845
-    * Checks whether the specified encoding is a valid
846
-    * unicode encoding, for example "UTF16-LE" or "UTF8".
847
-    * Also accounts for alternate way to write the, like
848
-    * "UTF-8", and omitting little/big endian suffixes.
849
-    * 
850
-    * @param string $encoding
851
-    * @return boolean
852
-    */
844
+    /**
845
+     * Checks whether the specified encoding is a valid
846
+     * unicode encoding, for example "UTF16-LE" or "UTF8".
847
+     * Also accounts for alternate way to write the, like
848
+     * "UTF-8", and omitting little/big endian suffixes.
849
+     * 
850
+     * @param string $encoding
851
+     * @return boolean
852
+     */
853 853
     public static function isValidUnicodeEncoding(string $encoding) : bool
854 854
     {
855 855
         $encodings = self::getKnownUnicodeEncodings();
@@ -868,40 +868,40 @@  discard block
 block discarded – undo
868 868
         return in_array($encoding, $keep);
869 869
     }
870 870
     
871
-   /**
872
-    * Retrieves a list of all known unicode file encodings.
873
-    * @return array
874
-    */
871
+    /**
872
+     * Retrieves a list of all known unicode file encodings.
873
+     * @return array
874
+     */
875 875
     public static function getKnownUnicodeEncodings()
876 876
     {
877 877
         return array_keys(self::getUTFBOMs());
878 878
     }
879 879
     
880
-   /**
881
-    * Normalizes the slash style in a file or folder path,
882
-    * by replacing any antislashes with forward slashes.
883
-    * 
884
-    * @param string $path
885
-    * @return string
886
-    */
880
+    /**
881
+     * Normalizes the slash style in a file or folder path,
882
+     * by replacing any antislashes with forward slashes.
883
+     * 
884
+     * @param string $path
885
+     * @return string
886
+     */
887 887
     public static function normalizePath(string $path) : string
888 888
     {
889 889
         return str_replace(array('\\', '//'), array('/', '/'), $path);
890 890
     }
891 891
     
892
-   /**
893
-    * Saves the specified data to a file, JSON encoded.
894
-    * 
895
-    * @param mixed $data
896
-    * @param string $file
897
-    * @param bool $pretty
898
-    * @throws FileHelper_Exception
899
-    * 
900
-    * @see FileHelper::ERROR_JSON_ENCODE_ERROR
901
-    * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
902
-    * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
903
-    * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
904
-    */
892
+    /**
893
+     * Saves the specified data to a file, JSON encoded.
894
+     * 
895
+     * @param mixed $data
896
+     * @param string $file
897
+     * @param bool $pretty
898
+     * @throws FileHelper_Exception
899
+     * 
900
+     * @see FileHelper::ERROR_JSON_ENCODE_ERROR
901
+     * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
902
+     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
903
+     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
904
+     */
905 905
     public static function saveAsJSON($data, string $file, bool $pretty=false)
906 906
     {
907 907
         $options = null;
@@ -925,18 +925,18 @@  discard block
 block discarded – undo
925 925
         self::saveFile($file, $json);
926 926
     }
927 927
    
928
-   /**
929
-    * Saves the specified content to the target file, creating
930
-    * the file and the folder as necessary.
931
-    * 
932
-    * @param string $filePath
933
-    * @param string $content
934
-    * @throws FileHelper_Exception
935
-    * 
936
-    * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
937
-    * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
938
-    * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
939
-    */
928
+    /**
929
+     * Saves the specified content to the target file, creating
930
+     * the file and the folder as necessary.
931
+     * 
932
+     * @param string $filePath
933
+     * @param string $content
934
+     * @throws FileHelper_Exception
935
+     * 
936
+     * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE
937
+     * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE
938
+     * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED
939
+     */
940 940
     public static function saveFile(string $filePath, string $content='') : void
941 941
     {
942 942
         $filePath = self::normalizePath($filePath);
@@ -1003,12 +1003,12 @@  discard block
 block discarded – undo
1003 1003
         );
1004 1004
     }
1005 1005
     
1006
-   /**
1007
-    * Checks whether it is possible to run PHP command 
1008
-    * line commands.
1009
-    * 
1010
-    * @return boolean
1011
-    */
1006
+    /**
1007
+     * Checks whether it is possible to run PHP command 
1008
+     * line commands.
1009
+     * 
1010
+     * @return boolean
1011
+     */
1012 1012
     public static function canMakePHPCalls() : bool
1013 1013
     {
1014 1014
         return self::cliCommandExists('php');
@@ -1085,16 +1085,16 @@  discard block
 block discarded – undo
1085 1085
         return $result;
1086 1086
     }
1087 1087
     
1088
-   /**
1089
-    * Validates a PHP file's syntax.
1090
-    * 
1091
-    * NOTE: This will fail silently if the PHP command line
1092
-    * is not available. Use {@link FileHelper::canMakePHPCalls()}
1093
-    * to check this beforehand as needed.
1094
-    * 
1095
-    * @param string $path
1096
-    * @return boolean|array A boolean true if the file is valid, an array with validation messages otherwise.
1097
-    */
1088
+    /**
1089
+     * Validates a PHP file's syntax.
1090
+     * 
1091
+     * NOTE: This will fail silently if the PHP command line
1092
+     * is not available. Use {@link FileHelper::canMakePHPCalls()}
1093
+     * to check this beforehand as needed.
1094
+     * 
1095
+     * @param string $path
1096
+     * @return boolean|array A boolean true if the file is valid, an array with validation messages otherwise.
1097
+     */
1098 1098
     public static function checkPHPFileSyntax($path)
1099 1099
     {
1100 1100
         if(!self::canMakePHPCalls()) {
@@ -1118,14 +1118,14 @@  discard block
 block discarded – undo
1118 1118
         return $output;
1119 1119
     }
1120 1120
     
1121
-   /**
1122
-    * Retrieves the last modified date for the specified file or folder.
1123
-    * 
1124
-    * Note: If the target does not exist, returns null. 
1125
-    * 
1126
-    * @param string $path
1127
-    * @return \DateTime|NULL
1128
-    */
1121
+    /**
1122
+     * Retrieves the last modified date for the specified file or folder.
1123
+     * 
1124
+     * Note: If the target does not exist, returns null. 
1125
+     * 
1126
+     * @param string $path
1127
+     * @return \DateTime|NULL
1128
+     */
1129 1129
     public static function getModifiedDate($path)
1130 1130
     {
1131 1131
         $time = filemtime($path);
@@ -1138,24 +1138,24 @@  discard block
 block discarded – undo
1138 1138
         return null; 
1139 1139
     }
1140 1140
     
1141
-   /**
1142
-    * Retrieves the names of all subfolders in the specified path.
1143
-    * 
1144
-    * Available options:
1145
-    * 
1146
-    * - recursive: true/false
1147
-    *   Whether to search for subfolders recursively. 
1148
-    *   
1149
-    * - absolute-paths: true/false
1150
-    *   Whether to return a list of absolute paths.
1151
-    * 
1152
-    * @param string $targetFolder
1153
-    * @param array $options
1154
-    * @throws FileHelper_Exception
1155
-    * @return string[]
1156
-    * 
1157
-    * @todo Move this to a separate class.
1158
-    */
1141
+    /**
1142
+     * Retrieves the names of all subfolders in the specified path.
1143
+     * 
1144
+     * Available options:
1145
+     * 
1146
+     * - recursive: true/false
1147
+     *   Whether to search for subfolders recursively. 
1148
+     *   
1149
+     * - absolute-paths: true/false
1150
+     *   Whether to return a list of absolute paths.
1151
+     * 
1152
+     * @param string $targetFolder
1153
+     * @param array $options
1154
+     * @throws FileHelper_Exception
1155
+     * @return string[]
1156
+     * 
1157
+     * @todo Move this to a separate class.
1158
+     */
1159 1159
     public static function getSubfolders($targetFolder, $options = array())
1160 1160
     {
1161 1161
         if(!is_dir($targetFolder)) 
@@ -1216,16 +1216,16 @@  discard block
 block discarded – undo
1216 1216
         return $result;
1217 1217
     }
1218 1218
 
1219
-   /**
1220
-    * Retrieves the maximum allowed upload file size, in bytes.
1221
-    * Takes into account the PHP ini settings <code>post_max_size</code>
1222
-    * and <code>upload_max_filesize</code>. Since these cannot
1223
-    * be modified at runtime, they are the hard limits for uploads.
1224
-    * 
1225
-    * NOTE: Based on binary values, where 1KB = 1024 Bytes.
1226
-    * 
1227
-    * @return int Will return <code>-1</code> if no limit.
1228
-    */
1219
+    /**
1220
+     * Retrieves the maximum allowed upload file size, in bytes.
1221
+     * Takes into account the PHP ini settings <code>post_max_size</code>
1222
+     * and <code>upload_max_filesize</code>. Since these cannot
1223
+     * be modified at runtime, they are the hard limits for uploads.
1224
+     * 
1225
+     * NOTE: Based on binary values, where 1KB = 1024 Bytes.
1226
+     * 
1227
+     * @return int Will return <code>-1</code> if no limit.
1228
+     */
1229 1229
     public static function getMaxUploadFilesize() : int
1230 1230
     {
1231 1231
         static $max_size = -1;
@@ -1263,16 +1263,16 @@  discard block
 block discarded – undo
1263 1263
         return round($size);
1264 1264
     }
1265 1265
    
1266
-   /**
1267
-    * Makes a path relative using a folder depth: will reduce the
1268
-    * length of the path so that only the amount of folders defined
1269
-    * in the <code>$depth</code> attribute are shown below the actual
1270
-    * folder or file in the path.
1271
-    *  
1272
-    * @param string  $path The absolute or relative path
1273
-    * @param int $depth The folder depth to reduce the path to
1274
-    * @return string
1275
-    */
1266
+    /**
1267
+     * Makes a path relative using a folder depth: will reduce the
1268
+     * length of the path so that only the amount of folders defined
1269
+     * in the <code>$depth</code> attribute are shown below the actual
1270
+     * folder or file in the path.
1271
+     *  
1272
+     * @param string  $path The absolute or relative path
1273
+     * @param int $depth The folder depth to reduce the path to
1274
+     * @return string
1275
+     */
1276 1276
     public static function relativizePathByDepth(string $path, int $depth=2) : string
1277 1277
     {
1278 1278
         $path = self::normalizePath($path);
@@ -1310,23 +1310,23 @@  discard block
 block discarded – undo
1310 1310
         return trim(implode('/', $tokens), '/');
1311 1311
     }
1312 1312
     
1313
-   /**
1314
-    * Makes the specified path relative to another path,
1315
-    * by removing one from the other if found. Also 
1316
-    * normalizes the path to use forward slashes. 
1317
-    * 
1318
-    * Example:
1319
-    * 
1320
-    * <pre>
1321
-    * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder');
1322
-    * </pre>
1323
-    * 
1324
-    * Result: <code>to/file.txt</code>
1325
-    * 
1326
-    * @param string $path
1327
-    * @param string $relativeTo
1328
-    * @return string
1329
-    */
1313
+    /**
1314
+     * Makes the specified path relative to another path,
1315
+     * by removing one from the other if found. Also 
1316
+     * normalizes the path to use forward slashes. 
1317
+     * 
1318
+     * Example:
1319
+     * 
1320
+     * <pre>
1321
+     * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder');
1322
+     * </pre>
1323
+     * 
1324
+     * Result: <code>to/file.txt</code>
1325
+     * 
1326
+     * @param string $path
1327
+     * @param string $relativeTo
1328
+     * @return string
1329
+     */
1330 1330
     public static function relativizePath(string $path, string $relativeTo) : string
1331 1331
     {
1332 1332
         $path = self::normalizePath($path);
@@ -1338,17 +1338,17 @@  discard block
 block discarded – undo
1338 1338
         return $relative;
1339 1339
     }
1340 1340
     
1341
-   /**
1342
-    * Checks that the target file exists, and throws an exception
1343
-    * if it does not. 
1344
-    * 
1345
-    * @param string $path
1346
-    * @param int|NULL $errorCode Optional custom error code
1347
-    * @throws FileHelper_Exception
1348
-    * @return string The real path to the file
1349
-    * 
1350
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1351
-    */
1341
+    /**
1342
+     * Checks that the target file exists, and throws an exception
1343
+     * if it does not. 
1344
+     * 
1345
+     * @param string $path
1346
+     * @param int|NULL $errorCode Optional custom error code
1347
+     * @throws FileHelper_Exception
1348
+     * @return string The real path to the file
1349
+     * 
1350
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1351
+     */
1352 1352
     public static function requireFileExists(string $path, $errorCode=null) : string
1353 1353
     {
1354 1354
         $result = realpath($path);
@@ -1367,18 +1367,18 @@  discard block
 block discarded – undo
1367 1367
         );
1368 1368
     }
1369 1369
     
1370
-   /**
1371
-    * Reads a specific line number from the target file and returns its
1372
-    * contents, if the file has such a line. Does so with little memory
1373
-    * usage, as the file is not read entirely into memory.
1374
-    * 
1375
-    * @param string $path
1376
-    * @param int $lineNumber Note: 1-based; the first line is number 1.
1377
-    * @return string|NULL Will return null if the requested line does not exist.
1378
-    * @throws FileHelper_Exception
1379
-    * 
1380
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1381
-    */
1370
+    /**
1371
+     * Reads a specific line number from the target file and returns its
1372
+     * contents, if the file has such a line. Does so with little memory
1373
+     * usage, as the file is not read entirely into memory.
1374
+     * 
1375
+     * @param string $path
1376
+     * @param int $lineNumber Note: 1-based; the first line is number 1.
1377
+     * @return string|NULL Will return null if the requested line does not exist.
1378
+     * @throws FileHelper_Exception
1379
+     * 
1380
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1381
+     */
1382 1382
     public static function getLineFromFile(string $path, int $lineNumber) : ?string
1383 1383
     {
1384 1384
         self::requireFileExists($path);
@@ -1394,19 +1394,19 @@  discard block
 block discarded – undo
1394 1394
         $file->seek($targetLine);
1395 1395
         
1396 1396
         if($file->key() !== $targetLine) {
1397
-             return null;
1397
+                return null;
1398 1398
         }
1399 1399
         
1400 1400
         return $file->current(); 
1401 1401
     }
1402 1402
     
1403
-   /**
1404
-    * Retrieves the total amount of lines in the file, without 
1405
-    * reading the whole file into memory.
1406
-    * 
1407
-    * @param string $path
1408
-    * @return int
1409
-    */
1403
+    /**
1404
+     * Retrieves the total amount of lines in the file, without 
1405
+     * reading the whole file into memory.
1406
+     * 
1407
+     * @param string $path
1408
+     * @return int
1409
+     */
1410 1410
     public static function countFileLines(string $path) : int
1411 1411
     {
1412 1412
         self::requireFileExists($path);
@@ -1436,26 +1436,26 @@  discard block
 block discarded – undo
1436 1436
         return $number+1;
1437 1437
     }
1438 1438
     
1439
-   /**
1440
-    * Parses the target file to detect any PHP classes contained
1441
-    * within, and retrieve information on them. Does not use the 
1442
-    * PHP reflection API.
1443
-    * 
1444
-    * @param string $filePath
1445
-    * @return FileHelper_PHPClassInfo
1446
-    */
1439
+    /**
1440
+     * Parses the target file to detect any PHP classes contained
1441
+     * within, and retrieve information on them. Does not use the 
1442
+     * PHP reflection API.
1443
+     * 
1444
+     * @param string $filePath
1445
+     * @return FileHelper_PHPClassInfo
1446
+     */
1447 1447
     public static function findPHPClasses(string $filePath) : FileHelper_PHPClassInfo
1448 1448
     {
1449 1449
         return new FileHelper_PHPClassInfo($filePath);
1450 1450
     }
1451 1451
     
1452
-   /**
1453
-    * Detects the end of line style used in the target file, if any.
1454
-    * Can be used with large files, because it only reads part of it.
1455
-    * 
1456
-    * @param string $filePath The path to the file.
1457
-    * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found.
1458
-    */
1452
+    /**
1453
+     * Detects the end of line style used in the target file, if any.
1454
+     * Can be used with large files, because it only reads part of it.
1455
+     * 
1456
+     * @param string $filePath The path to the file.
1457
+     * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found.
1458
+     */
1459 1459
     public static function detectEOLCharacter(string $filePath) : ?ConvertHelper_EOL
1460 1460
     {
1461 1461
         // 20 lines is enough to get a good picture of the newline style in the file.
@@ -1468,18 +1468,18 @@  discard block
 block discarded – undo
1468 1468
         return ConvertHelper::detectEOLCharacter($string);
1469 1469
     }
1470 1470
     
1471
-   /**
1472
-    * Reads the specified amount of lines from the target file.
1473
-    * Unicode BOM compatible: any byte order marker is stripped
1474
-    * from the resulting lines.
1475
-    * 
1476
-    * @param string $filePath
1477
-    * @param int $amount Set to 0 to read all lines.
1478
-    * @return array
1479
-    * 
1480
-    * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1481
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1482
-    */
1471
+    /**
1472
+     * Reads the specified amount of lines from the target file.
1473
+     * Unicode BOM compatible: any byte order marker is stripped
1474
+     * from the resulting lines.
1475
+     * 
1476
+     * @param string $filePath
1477
+     * @param int $amount Set to 0 to read all lines.
1478
+     * @return array
1479
+     * 
1480
+     * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES
1481
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1482
+     */
1483 1483
     public static function readLines(string $filePath, int $amount=0) : array
1484 1484
     {
1485 1485
         self::requireFileExists($filePath);
@@ -1532,16 +1532,16 @@  discard block
 block discarded – undo
1532 1532
         return $result;
1533 1533
     }
1534 1534
     
1535
-   /**
1536
-    * Reads all content from a file.
1537
-    * 
1538
-    * @param string $filePath
1539
-    * @throws FileHelper_Exception
1540
-    * @return string
1541
-    * 
1542
-    * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1543
-    * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
1544
-    */
1535
+    /**
1536
+     * Reads all content from a file.
1537
+     * 
1538
+     * @param string $filePath
1539
+     * @throws FileHelper_Exception
1540
+     * @return string
1541
+     * 
1542
+     * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST
1543
+     * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS
1544
+     */
1545 1545
     public static function readContents(string $filePath) : string
1546 1546
     {
1547 1547
         self::requireFileExists($filePath);
@@ -1562,18 +1562,18 @@  discard block
 block discarded – undo
1562 1562
         );
1563 1563
     }
1564 1564
 
1565
-   /**
1566
-    * Ensures that the target path exists on disk, and is a folder.
1567
-    * 
1568
-    * @param string $path
1569
-    * @return string The real path, with normalized slashes.
1570
-    * @throws FileHelper_Exception
1571
-    * 
1572
-    * @see FileHelper::normalizePath()
1573
-    * 
1574
-    * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST
1575
-    * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER
1576
-    */
1565
+    /**
1566
+     * Ensures that the target path exists on disk, and is a folder.
1567
+     * 
1568
+     * @param string $path
1569
+     * @return string The real path, with normalized slashes.
1570
+     * @throws FileHelper_Exception
1571
+     * 
1572
+     * @see FileHelper::normalizePath()
1573
+     * 
1574
+     * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST
1575
+     * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER
1576
+     */
1577 1577
     public static function requireFolderExists(string $path) : string
1578 1578
     {
1579 1579
         $actual = realpath($path);
Please login to merge, or discard this patch.
src/RequestHelper.php 1 patch
Indentation   +144 added lines, -144 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);
@@ -277,14 +277,14 @@  discard block
 block discarded – undo
277 277
         return $this->data;
278 278
     }
279 279
     
280
-   /**
281
-    * Creates a new CURL resource configured according to the
282
-    * request's settings.
283
-    * 
284
-    * @param URLInfo $url
285
-    * @throws RequestHelper_Exception
286
-    * @return resource
287
-    */
280
+    /**
281
+     * Creates a new CURL resource configured according to the
282
+     * request's settings.
283
+     * 
284
+     * @param URLInfo $url
285
+     * @throws RequestHelper_Exception
286
+     * @return resource
287
+     */
288 288
     protected function createCURL(URLInfo $url)
289 289
     {
290 290
         $ch = curl_init();
@@ -332,10 +332,10 @@  discard block
 block discarded – undo
332 332
         return $ch;
333 333
     }
334 334
     
335
-   /**
336
-    * @param resource $ch
337
-    * @return bool Whether logging is enabled.
338
-    */
335
+    /**
336
+     * @param resource $ch
337
+     * @return bool Whether logging is enabled.
338
+     */
339 339
     protected function configureLogging($ch) : bool
340 340
     {
341 341
         if(empty($this->logfile))
@@ -362,13 +362,13 @@  discard block
 block discarded – undo
362 362
         return true;
363 363
     }
364 364
 
365
-   /**
366
-    * Compiles the associative headers array into
367
-    * the format understood by CURL, namely an indexed
368
-    * array with one header string per entry.
369
-    * 
370
-    * @return array
371
-    */
365
+    /**
366
+     * Compiles the associative headers array into
367
+     * the format understood by CURL, namely an indexed
368
+     * array with one header string per entry.
369
+     * 
370
+     * @return array
371
+     */
372 372
     protected function renderHeaders() : array
373 373
     {
374 374
         $result = array();
@@ -382,12 +382,12 @@  discard block
 block discarded – undo
382 382
         return $result;
383 383
     }
384 384
     
385
-   /**
386
-    * Retrieves the raw response header, in the form of an indexed
387
-    * array containing all response header lines.
388
-    * 
389
-    * @return array
390
-    */
385
+    /**
386
+     * Retrieves the raw response header, in the form of an indexed
387
+     * array containing all response header lines.
388
+     * 
389
+     * @return array
390
+     */
391 391
     public function getResponseHeader() : array
392 392
     {
393 393
         $response = $this->getResponse();
@@ -399,33 +399,33 @@  discard block
 block discarded – undo
399 399
         return array();
400 400
     }
401 401
 
402
-   /**
403
-    * After calling the {@link send()} method, this may be used to
404
-    * retrieve the response text from the POST request.
405
-    *
406
-    * @return RequestHelper_Response|NULL
407
-    */
402
+    /**
403
+     * After calling the {@link send()} method, this may be used to
404
+     * retrieve the response text from the POST request.
405
+     *
406
+     * @return RequestHelper_Response|NULL
407
+     */
408 408
     public function getResponse() : ?RequestHelper_Response
409 409
     {
410 410
         return $this->response;
411 411
     }
412 412
     
413
-   /**
414
-    * Retrieves all headers set until now.
415
-    * 
416
-    * @return array<string,string>
417
-    */
413
+    /**
414
+     * Retrieves all headers set until now.
415
+     * 
416
+     * @return array<string,string>
417
+     */
418 418
     public function getHeaders() : array
419 419
     {
420 420
         return $this->headers;
421 421
     }
422 422
     
423
-   /**
424
-    * Retrieves the value of a header by its name.
425
-    * 
426
-    * @param string $name
427
-    * @return string The header value, or an empty string if not set.
428
-    */
423
+    /**
424
+     * Retrieves the value of a header by its name.
425
+     * 
426
+     * @param string $name
427
+     * @return string The header value, or an empty string if not set.
428
+     */
429 429
     public function getHeader(string $name) : string
430 430
     {
431 431
         if(isset($this->headers[$name]))
Please login to merge, or discard this patch.