@@ -32,62 +32,62 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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])) |
@@ -28,9 +28,9 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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(); |
@@ -41,71 +41,71 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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); |
@@ -23,19 +23,19 @@ discard block |
||
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 |
||
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 |
||
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; |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | return ConvertHelper_String::tabs2spaces($string, $tabSize); |
55 | 55 | } |
56 | 56 | |
57 | - /** |
|
58 | - * Converts spaces to tabs in the specified string. |
|
59 | - * |
|
60 | - * @param string $string |
|
61 | - * @param int $tabSize The amount of spaces per tab in the source string. |
|
62 | - * @return string |
|
63 | - */ |
|
57 | + /** |
|
58 | + * Converts spaces to tabs in the specified string. |
|
59 | + * |
|
60 | + * @param string $string |
|
61 | + * @param int $tabSize The amount of spaces per tab in the source string. |
|
62 | + * @return string |
|
63 | + */ |
|
64 | 64 | public static function spaces2tabs(string $string, int $tabSize=4) : string |
65 | 65 | { |
66 | 66 | return ConvertHelper_String::spaces2tabs($string, $tabSize); |
@@ -78,133 +78,133 @@ discard block |
||
78 | 78 | return ConvertHelper_String::hidden2visible($string); |
79 | 79 | } |
80 | 80 | |
81 | - /** |
|
82 | - * Converts the specified amount of seconds into |
|
83 | - * a human readable string split in months, weeks, |
|
84 | - * days, hours, minutes and seconds. |
|
85 | - * |
|
86 | - * @param float $seconds |
|
87 | - * @return string |
|
88 | - */ |
|
81 | + /** |
|
82 | + * Converts the specified amount of seconds into |
|
83 | + * a human readable string split in months, weeks, |
|
84 | + * days, hours, minutes and seconds. |
|
85 | + * |
|
86 | + * @param float $seconds |
|
87 | + * @return string |
|
88 | + */ |
|
89 | 89 | public static function time2string($seconds) : string |
90 | 90 | { |
91 | 91 | $converter = new ConvertHelper_TimeConverter($seconds); |
92 | 92 | return $converter->toString(); |
93 | 93 | } |
94 | 94 | |
95 | - /** |
|
96 | - * Converts a timestamp into an easily understandable |
|
97 | - * format, e.g. "2 hours", "1 day", "3 months" |
|
98 | - * |
|
99 | - * If you set the date to parameter, the difference |
|
100 | - * will be calculated between the two dates and not |
|
101 | - * the current time. |
|
102 | - * |
|
103 | - * @param integer|DateTime $datefrom |
|
104 | - * @param integer|DateTime $dateto |
|
105 | - * @return string |
|
106 | - */ |
|
95 | + /** |
|
96 | + * Converts a timestamp into an easily understandable |
|
97 | + * format, e.g. "2 hours", "1 day", "3 months" |
|
98 | + * |
|
99 | + * If you set the date to parameter, the difference |
|
100 | + * will be calculated between the two dates and not |
|
101 | + * the current time. |
|
102 | + * |
|
103 | + * @param integer|DateTime $datefrom |
|
104 | + * @param integer|DateTime $dateto |
|
105 | + * @return string |
|
106 | + */ |
|
107 | 107 | public static function duration2string($datefrom, $dateto = -1) : string |
108 | 108 | { |
109 | - $converter = new ConvertHelper_DurationConverter(); |
|
109 | + $converter = new ConvertHelper_DurationConverter(); |
|
110 | 110 | |
111 | - if($datefrom instanceof DateTime) |
|
112 | - { |
|
113 | - $converter->setDateFrom($datefrom); |
|
114 | - } |
|
115 | - else |
|
116 | - { |
|
117 | - $converter->setDateFrom(self::timestamp2date($datefrom)); |
|
118 | - } |
|
111 | + if($datefrom instanceof DateTime) |
|
112 | + { |
|
113 | + $converter->setDateFrom($datefrom); |
|
114 | + } |
|
115 | + else |
|
116 | + { |
|
117 | + $converter->setDateFrom(self::timestamp2date($datefrom)); |
|
118 | + } |
|
119 | 119 | |
120 | - if($dateto instanceof DateTime) |
|
121 | - { |
|
122 | - $converter->setDateTo($dateto); |
|
123 | - } |
|
124 | - else if($dateto > 0) |
|
125 | - { |
|
126 | - $converter->setDateTo(self::timestamp2date($dateto)); |
|
127 | - } |
|
120 | + if($dateto instanceof DateTime) |
|
121 | + { |
|
122 | + $converter->setDateTo($dateto); |
|
123 | + } |
|
124 | + else if($dateto > 0) |
|
125 | + { |
|
126 | + $converter->setDateTo(self::timestamp2date($dateto)); |
|
127 | + } |
|
128 | 128 | |
129 | - return $converter->convert(); |
|
129 | + return $converter->convert(); |
|
130 | 130 | } |
131 | 131 | |
132 | - /** |
|
133 | - * Adds HTML syntax highlighting to the specified SQL string. |
|
134 | - * |
|
135 | - * @param string $sql |
|
136 | - * @return string |
|
137 | - * @deprecated Use the Highlighter class directly instead. |
|
138 | - * @see Highlighter::sql() |
|
139 | - */ |
|
132 | + /** |
|
133 | + * Adds HTML syntax highlighting to the specified SQL string. |
|
134 | + * |
|
135 | + * @param string $sql |
|
136 | + * @return string |
|
137 | + * @deprecated Use the Highlighter class directly instead. |
|
138 | + * @see Highlighter::sql() |
|
139 | + */ |
|
140 | 140 | public static function highlight_sql(string $sql) : string |
141 | 141 | { |
142 | 142 | return Highlighter::sql($sql); |
143 | 143 | } |
144 | 144 | |
145 | - /** |
|
146 | - * Adds HTML syntax highlighting to the specified XML code. |
|
147 | - * |
|
148 | - * @param string $xml The XML to highlight. |
|
149 | - * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
150 | - * @return string |
|
151 | - * @deprecated Use the Highlighter class directly instead. |
|
152 | - * @see Highlighter::xml() |
|
153 | - */ |
|
145 | + /** |
|
146 | + * Adds HTML syntax highlighting to the specified XML code. |
|
147 | + * |
|
148 | + * @param string $xml The XML to highlight. |
|
149 | + * @param bool $formatSource Whether to format the source with indentation to make it readable. |
|
150 | + * @return string |
|
151 | + * @deprecated Use the Highlighter class directly instead. |
|
152 | + * @see Highlighter::xml() |
|
153 | + */ |
|
154 | 154 | public static function highlight_xml(string $xml, bool $formatSource=false) : string |
155 | 155 | { |
156 | 156 | return Highlighter::xml($xml, $formatSource); |
157 | 157 | } |
158 | 158 | |
159 | - /** |
|
160 | - * @param string $phpCode |
|
161 | - * @return string |
|
162 | - * @deprecated Use the Highlighter class directly instead. |
|
163 | - * @see Highlighter::php() |
|
164 | - */ |
|
159 | + /** |
|
160 | + * @param string $phpCode |
|
161 | + * @return string |
|
162 | + * @deprecated Use the Highlighter class directly instead. |
|
163 | + * @see Highlighter::php() |
|
164 | + */ |
|
165 | 165 | public static function highlight_php(string $phpCode) : string |
166 | 166 | { |
167 | 167 | return Highlighter::php($phpCode); |
168 | 168 | } |
169 | 169 | |
170 | - /** |
|
171 | - * Converts a number of bytes to a human readable form, |
|
172 | - * e.g. xx Kb / xx Mb / xx Gb |
|
173 | - * |
|
174 | - * @param int $bytes The amount of bytes to convert. |
|
175 | - * @param int $precision The amount of decimals |
|
176 | - * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB). |
|
177 | - * @return string |
|
178 | - * |
|
179 | - * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
180 | - */ |
|
170 | + /** |
|
171 | + * Converts a number of bytes to a human readable form, |
|
172 | + * e.g. xx Kb / xx Mb / xx Gb |
|
173 | + * |
|
174 | + * @param int $bytes The amount of bytes to convert. |
|
175 | + * @param int $precision The amount of decimals |
|
176 | + * @param int $base The base to calculate with: Base 10 is default (=1000 Bytes in a KB), Base 2 is mainly used for Windows memory (=1024 Bytes in a KB). |
|
177 | + * @return string |
|
178 | + * |
|
179 | + * @see https://en.m.wikipedia.org/wiki/Megabyte#Definitions |
|
180 | + */ |
|
181 | 181 | public static function bytes2readable(int $bytes, int $precision = 1, int $base = ConvertHelper_StorageSizeEnum::BASE_10) : string |
182 | 182 | { |
183 | 183 | return self::parseBytes($bytes)->toString($precision, $base); |
184 | 184 | } |
185 | 185 | |
186 | - /** |
|
187 | - * Parses a number of bytes, and creates a converter instance which |
|
188 | - * allows doing common operations with it. |
|
189 | - * |
|
190 | - * @param int $bytes |
|
191 | - * @return ConvertHelper_ByteConverter |
|
192 | - */ |
|
186 | + /** |
|
187 | + * Parses a number of bytes, and creates a converter instance which |
|
188 | + * allows doing common operations with it. |
|
189 | + * |
|
190 | + * @param int $bytes |
|
191 | + * @return ConvertHelper_ByteConverter |
|
192 | + */ |
|
193 | 193 | public static function parseBytes(int $bytes) : ConvertHelper_ByteConverter |
194 | 194 | { |
195 | 195 | return new ConvertHelper_ByteConverter($bytes); |
196 | 196 | } |
197 | 197 | |
198 | - /** |
|
199 | - * Cuts a text to the specified length if it is longer than the |
|
200 | - * target length. Appends a text to signify it has been cut at |
|
201 | - * the end of the string. |
|
202 | - * |
|
203 | - * @param string $text |
|
204 | - * @param int $targetLength |
|
205 | - * @param string $append |
|
206 | - * @return string |
|
207 | - */ |
|
198 | + /** |
|
199 | + * Cuts a text to the specified length if it is longer than the |
|
200 | + * target length. Appends a text to signify it has been cut at |
|
201 | + * the end of the string. |
|
202 | + * |
|
203 | + * @param string $text |
|
204 | + * @param int $targetLength |
|
205 | + * @param string $append |
|
206 | + * @return string |
|
207 | + */ |
|
208 | 208 | public static function text_cut(string $text, int $targetLength, string $append = '...') : string |
209 | 209 | { |
210 | 210 | return ConvertHelper_String::cutText($text, $targetLength, $append); |
@@ -221,14 +221,14 @@ discard block |
||
221 | 221 | return $info->toString(); |
222 | 222 | } |
223 | 223 | |
224 | - /** |
|
225 | - * Pretty print_r. |
|
226 | - * |
|
227 | - * @param mixed $var The variable to dump. |
|
228 | - * @param bool $return Whether to return the dumped code. |
|
229 | - * @param bool $html Whether to style the dump as HTML. |
|
230 | - * @return string |
|
231 | - */ |
|
224 | + /** |
|
225 | + * Pretty print_r. |
|
226 | + * |
|
227 | + * @param mixed $var The variable to dump. |
|
228 | + * @param bool $return Whether to return the dumped code. |
|
229 | + * @param bool $html Whether to style the dump as HTML. |
|
230 | + * @return string |
|
231 | + */ |
|
232 | 232 | public static function print_r($var, bool $return=false, bool $html=true) : string |
233 | 233 | { |
234 | 234 | $result = parseVariable($var)->enableType()->toString(); |
@@ -249,41 +249,41 @@ discard block |
||
249 | 249 | return $result; |
250 | 250 | } |
251 | 251 | |
252 | - /** |
|
253 | - * Converts a string, number or boolean value to a boolean value. |
|
254 | - * |
|
255 | - * @param mixed $string |
|
256 | - * @throws ConvertHelper_Exception |
|
257 | - * @return bool |
|
258 | - * |
|
259 | - * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
260 | - */ |
|
252 | + /** |
|
253 | + * Converts a string, number or boolean value to a boolean value. |
|
254 | + * |
|
255 | + * @param mixed $string |
|
256 | + * @throws ConvertHelper_Exception |
|
257 | + * @return bool |
|
258 | + * |
|
259 | + * @see ConvertHelper::ERROR_INVALID_BOOLEAN_STRING |
|
260 | + */ |
|
261 | 261 | public static function string2bool($string) : bool |
262 | 262 | { |
263 | 263 | return ConvertHelper_Bool::fromString($string); |
264 | 264 | } |
265 | 265 | |
266 | - /** |
|
267 | - * Whether the specified string is a boolean string or boolean value. |
|
268 | - * Alias for {@link ConvertHelper::isBoolean()}. |
|
269 | - * |
|
270 | - * @param mixed $string |
|
271 | - * @return bool |
|
272 | - * @deprecated |
|
273 | - * @see ConvertHelper::isBoolean() |
|
274 | - */ |
|
266 | + /** |
|
267 | + * Whether the specified string is a boolean string or boolean value. |
|
268 | + * Alias for {@link ConvertHelper::isBoolean()}. |
|
269 | + * |
|
270 | + * @param mixed $string |
|
271 | + * @return bool |
|
272 | + * @deprecated |
|
273 | + * @see ConvertHelper::isBoolean() |
|
274 | + */ |
|
275 | 275 | public static function isBooleanString($string) : bool |
276 | 276 | { |
277 | 277 | return self::isBoolean($string); |
278 | 278 | } |
279 | 279 | |
280 | - /** |
|
281 | - * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
282 | - * |
|
283 | - * @param string $text |
|
284 | - * @return string |
|
285 | - * @deprecated |
|
286 | - */ |
|
280 | + /** |
|
281 | + * Alias for the {@\AppUtils\XMLHelper::string2xml()} method. |
|
282 | + * |
|
283 | + * @param string $text |
|
284 | + * @return string |
|
285 | + * @deprecated |
|
286 | + */ |
|
287 | 287 | public static function text_makeXMLCompliant($text) |
288 | 288 | { |
289 | 289 | return XMLHelper::string2xml($text); |
@@ -379,36 +379,36 @@ discard block |
||
379 | 379 | return ConvertHelper_String::transliterate($string, $spaceChar, $lowercase); |
380 | 380 | } |
381 | 381 | |
382 | - /** |
|
383 | - * Retrieves the HEX character codes for all control |
|
384 | - * characters that the {@link stripControlCharacters()} |
|
385 | - * method will remove. |
|
386 | - * |
|
387 | - * @return string[] |
|
388 | - */ |
|
382 | + /** |
|
383 | + * Retrieves the HEX character codes for all control |
|
384 | + * characters that the {@link stripControlCharacters()} |
|
385 | + * method will remove. |
|
386 | + * |
|
387 | + * @return string[] |
|
388 | + */ |
|
389 | 389 | public static function getControlCharactersAsHex() |
390 | 390 | { |
391 | 391 | return self::createControlCharacters()->getCharsAsHex(); |
392 | 392 | } |
393 | 393 | |
394 | - /** |
|
395 | - * Retrieves an array of all control characters that |
|
396 | - * the {@link stripControlCharacters()} method will |
|
397 | - * remove, as the actual UTF-8 characters. |
|
398 | - * |
|
399 | - * @return string[] |
|
400 | - */ |
|
394 | + /** |
|
395 | + * Retrieves an array of all control characters that |
|
396 | + * the {@link stripControlCharacters()} method will |
|
397 | + * remove, as the actual UTF-8 characters. |
|
398 | + * |
|
399 | + * @return string[] |
|
400 | + */ |
|
401 | 401 | public static function getControlCharactersAsUTF8() |
402 | 402 | { |
403 | 403 | return self::createControlCharacters()->getCharsAsUTF8(); |
404 | 404 | } |
405 | 405 | |
406 | - /** |
|
407 | - * Retrieves all control characters as JSON encoded |
|
408 | - * characters, e.g. "\u200b". |
|
409 | - * |
|
410 | - * @return string[] |
|
411 | - */ |
|
406 | + /** |
|
407 | + * Retrieves all control characters as JSON encoded |
|
408 | + * characters, e.g. "\u200b". |
|
409 | + * |
|
410 | + * @return string[] |
|
411 | + */ |
|
412 | 412 | public static function getControlCharactersAsJSON() |
413 | 413 | { |
414 | 414 | return self::createControlCharacters()->getCharsAsJSON(); |
@@ -429,31 +429,31 @@ discard block |
||
429 | 429 | return self::createControlCharacters()->stripControlCharacters($string); |
430 | 430 | } |
431 | 431 | |
432 | - /** |
|
433 | - * Creates the control characters class, used to |
|
434 | - * work with control characters in strings. |
|
435 | - * |
|
436 | - * @return ConvertHelper_ControlCharacters |
|
437 | - */ |
|
432 | + /** |
|
433 | + * Creates the control characters class, used to |
|
434 | + * work with control characters in strings. |
|
435 | + * |
|
436 | + * @return ConvertHelper_ControlCharacters |
|
437 | + */ |
|
438 | 438 | public static function createControlCharacters() : ConvertHelper_ControlCharacters |
439 | 439 | { |
440 | 440 | return new ConvertHelper_ControlCharacters(); |
441 | 441 | } |
442 | 442 | |
443 | - /** |
|
444 | - * Converts a unicode character to the PHPO notation. |
|
445 | - * |
|
446 | - * Example: |
|
447 | - * |
|
448 | - * <pre>unicodeChar2php('"\u0000"')</pre> |
|
449 | - * |
|
450 | - * Returns |
|
451 | - * |
|
452 | - * <pre>\x0</pre> |
|
453 | - * |
|
454 | - * @param string $unicodeChar |
|
455 | - * @return string |
|
456 | - */ |
|
443 | + /** |
|
444 | + * Converts a unicode character to the PHPO notation. |
|
445 | + * |
|
446 | + * Example: |
|
447 | + * |
|
448 | + * <pre>unicodeChar2php('"\u0000"')</pre> |
|
449 | + * |
|
450 | + * Returns |
|
451 | + * |
|
452 | + * <pre>\x0</pre> |
|
453 | + * |
|
454 | + * @param string $unicodeChar |
|
455 | + * @return string |
|
456 | + */ |
|
457 | 457 | public static function unicodeChar2php(string $unicodeChar) : string |
458 | 458 | { |
459 | 459 | $unicodeChar = json_decode($unicodeChar); |
@@ -563,87 +563,87 @@ discard block |
||
563 | 563 | return ConvertHelper_Bool::toString($boolean, $yesno); |
564 | 564 | } |
565 | 565 | |
566 | - /** |
|
567 | - * Converts an associative array with attribute name > value pairs |
|
568 | - * to an attribute string that can be used in an HTML tag. Empty |
|
569 | - * attribute values are ignored. |
|
570 | - * |
|
571 | - * Example: |
|
572 | - * |
|
573 | - * array2attributeString(array( |
|
574 | - * 'id' => 45, |
|
575 | - * 'href' => 'http://www.mistralys.com' |
|
576 | - * )); |
|
577 | - * |
|
578 | - * Result: |
|
579 | - * |
|
580 | - * id="45" href="http://www.mistralys.com" |
|
581 | - * |
|
582 | - * @param array<string,mixed> $array |
|
583 | - * @return string |
|
584 | - */ |
|
566 | + /** |
|
567 | + * Converts an associative array with attribute name > value pairs |
|
568 | + * to an attribute string that can be used in an HTML tag. Empty |
|
569 | + * attribute values are ignored. |
|
570 | + * |
|
571 | + * Example: |
|
572 | + * |
|
573 | + * array2attributeString(array( |
|
574 | + * 'id' => 45, |
|
575 | + * 'href' => 'http://www.mistralys.com' |
|
576 | + * )); |
|
577 | + * |
|
578 | + * Result: |
|
579 | + * |
|
580 | + * id="45" href="http://www.mistralys.com" |
|
581 | + * |
|
582 | + * @param array<string,mixed> $array |
|
583 | + * @return string |
|
584 | + */ |
|
585 | 585 | public static function array2attributeString(array $array) : string |
586 | 586 | { |
587 | 587 | return ConvertHelper_Array::toAttributeString($array); |
588 | 588 | } |
589 | 589 | |
590 | - /** |
|
591 | - * Converts a string so it can safely be used in a javascript |
|
592 | - * statement in an HTML tag: uses single quotes around the string |
|
593 | - * and encodes all special characters as needed. |
|
594 | - * |
|
595 | - * @param string $string |
|
596 | - * @return string |
|
597 | - * @deprecated Use the JSHelper class instead. |
|
598 | - * @see JSHelper::phpVariable2AttributeJS() |
|
599 | - */ |
|
590 | + /** |
|
591 | + * Converts a string so it can safely be used in a javascript |
|
592 | + * statement in an HTML tag: uses single quotes around the string |
|
593 | + * and encodes all special characters as needed. |
|
594 | + * |
|
595 | + * @param string $string |
|
596 | + * @return string |
|
597 | + * @deprecated Use the JSHelper class instead. |
|
598 | + * @see JSHelper::phpVariable2AttributeJS() |
|
599 | + */ |
|
600 | 600 | public static function string2attributeJS(string $string) : string |
601 | 601 | { |
602 | 602 | return JSHelper::phpVariable2AttributeJS($string); |
603 | 603 | } |
604 | 604 | |
605 | - /** |
|
606 | - * Checks if the specified string is a boolean value, which |
|
607 | - * includes string representations of boolean values, like |
|
608 | - * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
609 | - * or <code>false</code>. |
|
610 | - * |
|
611 | - * @param mixed $value |
|
612 | - * @return boolean |
|
613 | - */ |
|
605 | + /** |
|
606 | + * Checks if the specified string is a boolean value, which |
|
607 | + * includes string representations of boolean values, like |
|
608 | + * <code>yes</code> or <code>no</code>, and <code>true</code> |
|
609 | + * or <code>false</code>. |
|
610 | + * |
|
611 | + * @param mixed $value |
|
612 | + * @return boolean |
|
613 | + */ |
|
614 | 614 | public static function isBoolean($value) : bool |
615 | 615 | { |
616 | 616 | return ConvertHelper_Bool::isBoolean($value); |
617 | 617 | } |
618 | 618 | |
619 | - /** |
|
620 | - * Converts an associative array to an HTML style attribute value string. |
|
621 | - * |
|
622 | - * @param array<string,mixed> $subject |
|
623 | - * @return string |
|
624 | - */ |
|
619 | + /** |
|
620 | + * Converts an associative array to an HTML style attribute value string. |
|
621 | + * |
|
622 | + * @param array<string,mixed> $subject |
|
623 | + * @return string |
|
624 | + */ |
|
625 | 625 | public static function array2styleString(array $subject) : string |
626 | 626 | { |
627 | 627 | return ConvertHelper_Array::toStyleString($subject); |
628 | 628 | } |
629 | 629 | |
630 | - /** |
|
631 | - * Converts a DateTime object to a timestamp, which |
|
632 | - * is PHP 5.2 compatible. |
|
633 | - * |
|
634 | - * @param DateTime $date |
|
635 | - * @return integer |
|
636 | - */ |
|
630 | + /** |
|
631 | + * Converts a DateTime object to a timestamp, which |
|
632 | + * is PHP 5.2 compatible. |
|
633 | + * |
|
634 | + * @param DateTime $date |
|
635 | + * @return integer |
|
636 | + */ |
|
637 | 637 | public static function date2timestamp(DateTime $date) : int |
638 | 638 | { |
639 | 639 | return (int)$date->format('U'); |
640 | 640 | } |
641 | 641 | |
642 | - /** |
|
643 | - * Converts a timestamp into a DateTime instance. |
|
644 | - * @param int $timestamp |
|
645 | - * @return DateTime |
|
646 | - */ |
|
642 | + /** |
|
643 | + * Converts a timestamp into a DateTime instance. |
|
644 | + * @param int $timestamp |
|
645 | + * @return DateTime |
|
646 | + */ |
|
647 | 647 | public static function timestamp2date(int $timestamp) : DateTime |
648 | 648 | { |
649 | 649 | $date = new DateTime(); |
@@ -651,50 +651,50 @@ discard block |
||
651 | 651 | return $date; |
652 | 652 | } |
653 | 653 | |
654 | - /** |
|
655 | - * Strips an absolute path to a file within the application |
|
656 | - * to make the path relative to the application root path. |
|
657 | - * |
|
658 | - * @param string $path |
|
659 | - * @return string |
|
660 | - * |
|
661 | - * @see FileHelper::relativizePath() |
|
662 | - * @see FileHelper::relativizePathByDepth() |
|
663 | - */ |
|
654 | + /** |
|
655 | + * Strips an absolute path to a file within the application |
|
656 | + * to make the path relative to the application root path. |
|
657 | + * |
|
658 | + * @param string $path |
|
659 | + * @return string |
|
660 | + * |
|
661 | + * @see FileHelper::relativizePath() |
|
662 | + * @see FileHelper::relativizePathByDepth() |
|
663 | + */ |
|
664 | 664 | public static function fileRelativize(string $path) : string |
665 | 665 | { |
666 | 666 | return FileHelper::relativizePathByDepth($path); |
667 | 667 | } |
668 | 668 | |
669 | 669 | /** |
670 | - * Converts a PHP regex to a javascript RegExp object statement. |
|
671 | - * |
|
672 | - * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
673 | - * More details are available on its usage there. |
|
674 | - * |
|
675 | - * @param string $regex A PHP preg regex |
|
676 | - * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
677 | - * @return array|string Depending on the specified return type. |
|
678 | - * |
|
679 | - * @see JSHelper::buildRegexStatement() |
|
680 | - */ |
|
670 | + * Converts a PHP regex to a javascript RegExp object statement. |
|
671 | + * |
|
672 | + * NOTE: This is an alias for the JSHelper's `convertRegex` method. |
|
673 | + * More details are available on its usage there. |
|
674 | + * |
|
675 | + * @param string $regex A PHP preg regex |
|
676 | + * @param string $statementType The type of statement to return: Defaults to a statement to create a RegExp object. |
|
677 | + * @return array|string Depending on the specified return type. |
|
678 | + * |
|
679 | + * @see JSHelper::buildRegexStatement() |
|
680 | + */ |
|
681 | 681 | public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT) |
682 | 682 | { |
683 | 683 | return JSHelper::buildRegexStatement($regex, $statementType); |
684 | 684 | } |
685 | 685 | |
686 | - /** |
|
687 | - * Converts the specified variable to JSON. Works just |
|
688 | - * like the native `json_encode` method, except that it |
|
689 | - * will trigger an exception on failure, which has the |
|
690 | - * json error details included in its developer details. |
|
691 | - * |
|
692 | - * @param mixed $variable |
|
693 | - * @param int $options JSON encode options. |
|
694 | - * @param int $depth |
|
695 | - * @throws ConvertHelper_Exception |
|
696 | - * @return string |
|
697 | - */ |
|
686 | + /** |
|
687 | + * Converts the specified variable to JSON. Works just |
|
688 | + * like the native `json_encode` method, except that it |
|
689 | + * will trigger an exception on failure, which has the |
|
690 | + * json error details included in its developer details. |
|
691 | + * |
|
692 | + * @param mixed $variable |
|
693 | + * @param int $options JSON encode options. |
|
694 | + * @param int $depth |
|
695 | + * @throws ConvertHelper_Exception |
|
696 | + * @return string |
|
697 | + */ |
|
698 | 698 | public static function var2json($variable, int $options=0, int $depth=512) : string |
699 | 699 | { |
700 | 700 | $result = json_encode($variable, $options, $depth); |
@@ -715,12 +715,12 @@ discard block |
||
715 | 715 | ); |
716 | 716 | } |
717 | 717 | |
718 | - /** |
|
719 | - * Strips all known UTF byte order marks from the specified string. |
|
720 | - * |
|
721 | - * @param string $string |
|
722 | - * @return string |
|
723 | - */ |
|
718 | + /** |
|
719 | + * Strips all known UTF byte order marks from the specified string. |
|
720 | + * |
|
721 | + * @param string $string |
|
722 | + * @return string |
|
723 | + */ |
|
724 | 724 | public static function stripUTFBom($string) |
725 | 725 | { |
726 | 726 | $boms = FileHelper::getUTFBOMs(); |
@@ -735,65 +735,65 @@ discard block |
||
735 | 735 | return $string; |
736 | 736 | } |
737 | 737 | |
738 | - /** |
|
739 | - * Converts a string to valid utf8, regardless |
|
740 | - * of the string's encoding(s). |
|
741 | - * |
|
742 | - * @param string $string |
|
743 | - * @return string |
|
744 | - */ |
|
738 | + /** |
|
739 | + * Converts a string to valid utf8, regardless |
|
740 | + * of the string's encoding(s). |
|
741 | + * |
|
742 | + * @param string $string |
|
743 | + * @return string |
|
744 | + */ |
|
745 | 745 | public static function string2utf8(string $string) : string |
746 | 746 | { |
747 | 747 | return ConvertHelper_String::toUtf8($string); |
748 | 748 | } |
749 | 749 | |
750 | - /** |
|
751 | - * Checks whether the specified string is an ASCII |
|
752 | - * string, without any special or UTF8 characters. |
|
753 | - * Note: empty strings and NULL are considered ASCII. |
|
754 | - * Any variable types other than strings are not. |
|
755 | - * |
|
756 | - * @param string|float|int|NULL $string |
|
757 | - * @return boolean |
|
758 | - */ |
|
750 | + /** |
|
751 | + * Checks whether the specified string is an ASCII |
|
752 | + * string, without any special or UTF8 characters. |
|
753 | + * Note: empty strings and NULL are considered ASCII. |
|
754 | + * Any variable types other than strings are not. |
|
755 | + * |
|
756 | + * @param string|float|int|NULL $string |
|
757 | + * @return boolean |
|
758 | + */ |
|
759 | 759 | public static function isStringASCII($string) : bool |
760 | 760 | { |
761 | 761 | return ConvertHelper_String::isASCII(strval($string)); |
762 | 762 | } |
763 | 763 | |
764 | - /** |
|
765 | - * Adds HTML syntax highlighting to an URL. |
|
766 | - * |
|
767 | - * NOTE: Includes the necessary CSS styles. When |
|
768 | - * highlighting several URLs in the same page, |
|
769 | - * prefer using the `parseURL` function instead. |
|
770 | - * |
|
771 | - * @param string $url |
|
772 | - * @return string |
|
773 | - * @deprecated Use the Highlighter class directly instead. |
|
774 | - * @see Highlighter |
|
775 | - */ |
|
764 | + /** |
|
765 | + * Adds HTML syntax highlighting to an URL. |
|
766 | + * |
|
767 | + * NOTE: Includes the necessary CSS styles. When |
|
768 | + * highlighting several URLs in the same page, |
|
769 | + * prefer using the `parseURL` function instead. |
|
770 | + * |
|
771 | + * @param string $url |
|
772 | + * @return string |
|
773 | + * @deprecated Use the Highlighter class directly instead. |
|
774 | + * @see Highlighter |
|
775 | + */ |
|
776 | 776 | public static function highlight_url(string $url) : string |
777 | 777 | { |
778 | 778 | return Highlighter::url($url); |
779 | 779 | } |
780 | 780 | |
781 | - /** |
|
782 | - * Calculates a percentage match of the source string with the target string. |
|
783 | - * |
|
784 | - * Options are: |
|
785 | - * |
|
786 | - * - maxLevenshtein, default: 10 |
|
787 | - * Any levenshtein results above this value are ignored. |
|
788 | - * |
|
789 | - * - precision, default: 1 |
|
790 | - * The precision of the percentage float value |
|
791 | - * |
|
792 | - * @param string $source |
|
793 | - * @param string $target |
|
794 | - * @param array $options |
|
795 | - * @return float |
|
796 | - */ |
|
781 | + /** |
|
782 | + * Calculates a percentage match of the source string with the target string. |
|
783 | + * |
|
784 | + * Options are: |
|
785 | + * |
|
786 | + * - maxLevenshtein, default: 10 |
|
787 | + * Any levenshtein results above this value are ignored. |
|
788 | + * |
|
789 | + * - precision, default: 1 |
|
790 | + * The precision of the percentage float value |
|
791 | + * |
|
792 | + * @param string $source |
|
793 | + * @param string $target |
|
794 | + * @param array $options |
|
795 | + * @return float |
|
796 | + */ |
|
797 | 797 | public static function matchString($source, $target, $options=array()) |
798 | 798 | { |
799 | 799 | $defaults = array( |
@@ -817,14 +817,14 @@ discard block |
||
817 | 817 | return round(100 - $percent, $options['precision']); |
818 | 818 | } |
819 | 819 | |
820 | - /** |
|
821 | - * Converts a date interval to a human readable string with |
|
822 | - * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
823 | - * |
|
824 | - * @param \DateInterval $interval |
|
825 | - * @return string |
|
826 | - * @see ConvertHelper_IntervalConverter |
|
827 | - */ |
|
820 | + /** |
|
821 | + * Converts a date interval to a human readable string with |
|
822 | + * all necessary time components, e.g. "1 year, 2 months and 4 days". |
|
823 | + * |
|
824 | + * @param \DateInterval $interval |
|
825 | + * @return string |
|
826 | + * @see ConvertHelper_IntervalConverter |
|
827 | + */ |
|
828 | 828 | public static function interval2string(\DateInterval $interval) : string |
829 | 829 | { |
830 | 830 | $converter = new ConvertHelper_IntervalConverter(); |
@@ -839,60 +839,60 @@ discard block |
||
839 | 839 | |
840 | 840 | const INTERVAL_SECONDS = 'seconds'; |
841 | 841 | |
842 | - /** |
|
843 | - * Converts an interval to its total amount of days. |
|
844 | - * @param \DateInterval $interval |
|
845 | - * @return int |
|
846 | - */ |
|
842 | + /** |
|
843 | + * Converts an interval to its total amount of days. |
|
844 | + * @param \DateInterval $interval |
|
845 | + * @return int |
|
846 | + */ |
|
847 | 847 | public static function interval2days(\DateInterval $interval) : int |
848 | 848 | { |
849 | 849 | return self::interval2total($interval, self::INTERVAL_DAYS); |
850 | 850 | } |
851 | 851 | |
852 | - /** |
|
853 | - * Converts an interval to its total amount of hours. |
|
854 | - * @param \DateInterval $interval |
|
855 | - * @return int |
|
856 | - */ |
|
852 | + /** |
|
853 | + * Converts an interval to its total amount of hours. |
|
854 | + * @param \DateInterval $interval |
|
855 | + * @return int |
|
856 | + */ |
|
857 | 857 | public static function interval2hours(\DateInterval $interval) : int |
858 | 858 | { |
859 | 859 | return self::interval2total($interval, self::INTERVAL_HOURS); |
860 | 860 | } |
861 | 861 | |
862 | - /** |
|
863 | - * Converts an interval to its total amount of minutes. |
|
864 | - * @param \DateInterval $interval |
|
865 | - * @return int |
|
866 | - */ |
|
862 | + /** |
|
863 | + * Converts an interval to its total amount of minutes. |
|
864 | + * @param \DateInterval $interval |
|
865 | + * @return int |
|
866 | + */ |
|
867 | 867 | public static function interval2minutes(\DateInterval $interval) : int |
868 | 868 | { |
869 | 869 | return self::interval2total($interval, self::INTERVAL_MINUTES); |
870 | 870 | } |
871 | 871 | |
872 | - /** |
|
873 | - * Converts an interval to its total amount of seconds. |
|
874 | - * @param \DateInterval $interval |
|
875 | - * @return int |
|
876 | - */ |
|
872 | + /** |
|
873 | + * Converts an interval to its total amount of seconds. |
|
874 | + * @param \DateInterval $interval |
|
875 | + * @return int |
|
876 | + */ |
|
877 | 877 | public static function interval2seconds(\DateInterval $interval) : int |
878 | 878 | { |
879 | 879 | return self::interval2total($interval, self::INTERVAL_SECONDS); |
880 | 880 | } |
881 | 881 | |
882 | - /** |
|
883 | - * Calculates the total amount of days / hours / minutes or seconds |
|
884 | - * of a date interval object (depending in the specified units), and |
|
885 | - * returns the total amount. |
|
886 | - * |
|
887 | - * @param \DateInterval $interval |
|
888 | - * @param string $unit What total value to calculate. |
|
889 | - * @return integer |
|
890 | - * |
|
891 | - * @see ConvertHelper::INTERVAL_SECONDS |
|
892 | - * @see ConvertHelper::INTERVAL_MINUTES |
|
893 | - * @see ConvertHelper::INTERVAL_HOURS |
|
894 | - * @see ConvertHelper::INTERVAL_DAYS |
|
895 | - */ |
|
882 | + /** |
|
883 | + * Calculates the total amount of days / hours / minutes or seconds |
|
884 | + * of a date interval object (depending in the specified units), and |
|
885 | + * returns the total amount. |
|
886 | + * |
|
887 | + * @param \DateInterval $interval |
|
888 | + * @param string $unit What total value to calculate. |
|
889 | + * @return integer |
|
890 | + * |
|
891 | + * @see ConvertHelper::INTERVAL_SECONDS |
|
892 | + * @see ConvertHelper::INTERVAL_MINUTES |
|
893 | + * @see ConvertHelper::INTERVAL_HOURS |
|
894 | + * @see ConvertHelper::INTERVAL_DAYS |
|
895 | + */ |
|
896 | 896 | public static function interval2total(\DateInterval $interval, $unit=self::INTERVAL_SECONDS) : int |
897 | 897 | { |
898 | 898 | $total = (int)$interval->format('%a'); |
@@ -932,13 +932,13 @@ discard block |
||
932 | 932 | 'Sunday' |
933 | 933 | ); |
934 | 934 | |
935 | - /** |
|
936 | - * Converts a date to the corresponding day name. |
|
937 | - * |
|
938 | - * @param DateTime $date |
|
939 | - * @param bool $short |
|
940 | - * @return string|NULL |
|
941 | - */ |
|
935 | + /** |
|
936 | + * Converts a date to the corresponding day name. |
|
937 | + * |
|
938 | + * @param DateTime $date |
|
939 | + * @param bool $short |
|
940 | + * @return string|NULL |
|
941 | + */ |
|
942 | 942 | public static function date2dayName(DateTime $date, bool $short=false) |
943 | 943 | { |
944 | 944 | $day = $date->format('l'); |
@@ -953,21 +953,21 @@ discard block |
||
953 | 953 | return null; |
954 | 954 | } |
955 | 955 | |
956 | - /** |
|
957 | - * Retrieves a list of english day names. |
|
958 | - * @return string[] |
|
959 | - */ |
|
956 | + /** |
|
957 | + * Retrieves a list of english day names. |
|
958 | + * @return string[] |
|
959 | + */ |
|
960 | 960 | public static function getDayNamesInvariant() |
961 | 961 | { |
962 | 962 | return self::$daysInvariant; |
963 | 963 | } |
964 | 964 | |
965 | - /** |
|
966 | - * Retrieves the day names list for the current locale. |
|
967 | - * |
|
968 | - * @param bool $short |
|
969 | - * @return array |
|
970 | - */ |
|
965 | + /** |
|
966 | + * Retrieves the day names list for the current locale. |
|
967 | + * |
|
968 | + * @param bool $short |
|
969 | + * @return array |
|
970 | + */ |
|
971 | 971 | public static function getDayNames(bool $short=false) : array |
972 | 972 | { |
973 | 973 | if($short) { |
@@ -1014,68 +1014,68 @@ discard block |
||
1014 | 1014 | return ConvertHelper_Array::implodeWithAnd($list, $sep, $conjunction); |
1015 | 1015 | } |
1016 | 1016 | |
1017 | - /** |
|
1018 | - * Splits a string into an array of all characters it is composed of. |
|
1019 | - * Unicode character safe. |
|
1020 | - * |
|
1021 | - * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
1022 | - * characters. |
|
1023 | - * |
|
1024 | - * @param string $string |
|
1025 | - * @return string[] |
|
1026 | - */ |
|
1017 | + /** |
|
1018 | + * Splits a string into an array of all characters it is composed of. |
|
1019 | + * Unicode character safe. |
|
1020 | + * |
|
1021 | + * NOTE: Spaces and newlines (both \r and \n) are also considered single |
|
1022 | + * characters. |
|
1023 | + * |
|
1024 | + * @param string $string |
|
1025 | + * @return string[] |
|
1026 | + */ |
|
1027 | 1027 | public static function string2array(string $string) : array |
1028 | 1028 | { |
1029 | 1029 | return ConvertHelper_String::toArray($string); |
1030 | 1030 | } |
1031 | 1031 | |
1032 | - /** |
|
1033 | - * Checks whether the specified string contains HTML code. |
|
1034 | - * |
|
1035 | - * @param string $string |
|
1036 | - * @return boolean |
|
1037 | - */ |
|
1032 | + /** |
|
1033 | + * Checks whether the specified string contains HTML code. |
|
1034 | + * |
|
1035 | + * @param string $string |
|
1036 | + * @return boolean |
|
1037 | + */ |
|
1038 | 1038 | public static function isStringHTML(string $string) : bool |
1039 | 1039 | { |
1040 | 1040 | return ConvertHelper_String::isHTML($string); |
1041 | 1041 | } |
1042 | 1042 | |
1043 | - /** |
|
1044 | - * UTF8-safe wordwrap method: works like the regular wordwrap |
|
1045 | - * PHP function but compatible with UTF8. Otherwise the lengths |
|
1046 | - * are not calculated correctly. |
|
1047 | - * |
|
1048 | - * @param string $str |
|
1049 | - * @param int $width |
|
1050 | - * @param string $break |
|
1051 | - * @param bool $cut |
|
1052 | - * @return string |
|
1053 | - */ |
|
1043 | + /** |
|
1044 | + * UTF8-safe wordwrap method: works like the regular wordwrap |
|
1045 | + * PHP function but compatible with UTF8. Otherwise the lengths |
|
1046 | + * are not calculated correctly. |
|
1047 | + * |
|
1048 | + * @param string $str |
|
1049 | + * @param int $width |
|
1050 | + * @param string $break |
|
1051 | + * @param bool $cut |
|
1052 | + * @return string |
|
1053 | + */ |
|
1054 | 1054 | public static function wordwrap(string $str, int $width = 75, string $break = "\n", bool $cut = false) : string |
1055 | 1055 | { |
1056 | 1056 | return ConvertHelper_String::wordwrap($str, $width, $break, $cut); |
1057 | 1057 | } |
1058 | 1058 | |
1059 | - /** |
|
1060 | - * Calculates the byte length of a string, taking into |
|
1061 | - * account any unicode characters. |
|
1062 | - * |
|
1063 | - * @param string $string |
|
1064 | - * @return int |
|
1065 | - */ |
|
1059 | + /** |
|
1060 | + * Calculates the byte length of a string, taking into |
|
1061 | + * account any unicode characters. |
|
1062 | + * |
|
1063 | + * @param string $string |
|
1064 | + * @return int |
|
1065 | + */ |
|
1066 | 1066 | public static function string2bytes(string $string): int |
1067 | 1067 | { |
1068 | 1068 | return ConvertHelper_String::toBytes($string); |
1069 | 1069 | } |
1070 | 1070 | |
1071 | - /** |
|
1072 | - * Creates a short, 8-character long hash for the specified string. |
|
1073 | - * |
|
1074 | - * WARNING: Not cryptographically safe. |
|
1075 | - * |
|
1076 | - * @param string $string |
|
1077 | - * @return string |
|
1078 | - */ |
|
1071 | + /** |
|
1072 | + * Creates a short, 8-character long hash for the specified string. |
|
1073 | + * |
|
1074 | + * WARNING: Not cryptographically safe. |
|
1075 | + * |
|
1076 | + * @param string $string |
|
1077 | + * @return string |
|
1078 | + */ |
|
1079 | 1079 | public static function string2shortHash(string $string) : string |
1080 | 1080 | { |
1081 | 1081 | return ConvertHelper_String::toShortHash($string); |
@@ -1107,88 +1107,88 @@ discard block |
||
1107 | 1107 | return ConvertHelper_ThrowableInfo::fromThrowable($e); |
1108 | 1108 | } |
1109 | 1109 | |
1110 | - /** |
|
1111 | - * Parses the specified query string like the native |
|
1112 | - * function <code>parse_str</code>, without the key |
|
1113 | - * naming limitations. |
|
1114 | - * |
|
1115 | - * Using parse_str, dots or spaces in key names are |
|
1116 | - * replaced by underscores. This method keeps all names |
|
1117 | - * intact. |
|
1118 | - * |
|
1119 | - * It still uses the parse_str implementation as it |
|
1120 | - * is tested and tried, but fixes the parameter names |
|
1121 | - * after parsing, as needed. |
|
1122 | - * |
|
1123 | - * @param string $queryString |
|
1124 | - * @return array |
|
1125 | - * @see ConvertHelper_QueryParser |
|
1126 | - */ |
|
1110 | + /** |
|
1111 | + * Parses the specified query string like the native |
|
1112 | + * function <code>parse_str</code>, without the key |
|
1113 | + * naming limitations. |
|
1114 | + * |
|
1115 | + * Using parse_str, dots or spaces in key names are |
|
1116 | + * replaced by underscores. This method keeps all names |
|
1117 | + * intact. |
|
1118 | + * |
|
1119 | + * It still uses the parse_str implementation as it |
|
1120 | + * is tested and tried, but fixes the parameter names |
|
1121 | + * after parsing, as needed. |
|
1122 | + * |
|
1123 | + * @param string $queryString |
|
1124 | + * @return array |
|
1125 | + * @see ConvertHelper_QueryParser |
|
1126 | + */ |
|
1127 | 1127 | public static function parseQueryString(string $queryString) : array |
1128 | 1128 | { |
1129 | 1129 | $parser = new ConvertHelper_QueryParser(); |
1130 | 1130 | return $parser->parse($queryString); |
1131 | 1131 | } |
1132 | 1132 | |
1133 | - /** |
|
1134 | - * Searches for needle in the specified string, and returns a list |
|
1135 | - * of all occurrences, including the matched string. The matched |
|
1136 | - * string is useful when doing a case insensitive search, as it |
|
1137 | - * shows the exact matched case of needle. |
|
1138 | - * |
|
1139 | - * @param string $needle |
|
1140 | - * @param string $haystack |
|
1141 | - * @param bool $caseInsensitive |
|
1142 | - * @return ConvertHelper_StringMatch[] |
|
1143 | - */ |
|
1133 | + /** |
|
1134 | + * Searches for needle in the specified string, and returns a list |
|
1135 | + * of all occurrences, including the matched string. The matched |
|
1136 | + * string is useful when doing a case insensitive search, as it |
|
1137 | + * shows the exact matched case of needle. |
|
1138 | + * |
|
1139 | + * @param string $needle |
|
1140 | + * @param string $haystack |
|
1141 | + * @param bool $caseInsensitive |
|
1142 | + * @return ConvertHelper_StringMatch[] |
|
1143 | + */ |
|
1144 | 1144 | public static function findString(string $needle, string $haystack, bool $caseInsensitive=false): array |
1145 | 1145 | { |
1146 | 1146 | return ConvertHelper_String::findString($needle, $haystack, $caseInsensitive); |
1147 | 1147 | } |
1148 | 1148 | |
1149 | - /** |
|
1150 | - * Like explode, but trims all entries, and removes |
|
1151 | - * empty entries from the resulting array. |
|
1152 | - * |
|
1153 | - * @param string $delimiter |
|
1154 | - * @param string $string |
|
1155 | - * @return string[] |
|
1156 | - */ |
|
1149 | + /** |
|
1150 | + * Like explode, but trims all entries, and removes |
|
1151 | + * empty entries from the resulting array. |
|
1152 | + * |
|
1153 | + * @param string $delimiter |
|
1154 | + * @param string $string |
|
1155 | + * @return string[] |
|
1156 | + */ |
|
1157 | 1157 | public static function explodeTrim(string $delimiter, string $string) : array |
1158 | 1158 | { |
1159 | 1159 | return ConvertHelper_String::explodeTrim($delimiter, $string); |
1160 | 1160 | } |
1161 | 1161 | |
1162 | - /** |
|
1163 | - * Detects the most used end-of-line character in the subject string. |
|
1164 | - * |
|
1165 | - * @param string $subjectString The string to check. |
|
1166 | - * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
1167 | - */ |
|
1162 | + /** |
|
1163 | + * Detects the most used end-of-line character in the subject string. |
|
1164 | + * |
|
1165 | + * @param string $subjectString The string to check. |
|
1166 | + * @return NULL|ConvertHelper_EOL The detected EOL instance, or NULL if none has been detected. |
|
1167 | + */ |
|
1168 | 1168 | public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL |
1169 | 1169 | { |
1170 | 1170 | return ConvertHelper_EOL::detect($subjectString); |
1171 | 1171 | } |
1172 | 1172 | |
1173 | - /** |
|
1174 | - * Removes the specified keys from the target array, |
|
1175 | - * if they exist. |
|
1176 | - * |
|
1177 | - * @param array $array |
|
1178 | - * @param array $keys |
|
1179 | - */ |
|
1173 | + /** |
|
1174 | + * Removes the specified keys from the target array, |
|
1175 | + * if they exist. |
|
1176 | + * |
|
1177 | + * @param array $array |
|
1178 | + * @param array $keys |
|
1179 | + */ |
|
1180 | 1180 | public static function arrayRemoveKeys(array &$array, array $keys) : void |
1181 | 1181 | { |
1182 | 1182 | ConvertHelper_Array::removeKeys($array, $keys); |
1183 | 1183 | } |
1184 | 1184 | |
1185 | - /** |
|
1186 | - * Checks if the specified variable is an integer or a string containing an integer. |
|
1187 | - * Accepts both positive and negative integers. |
|
1188 | - * |
|
1189 | - * @param mixed $value |
|
1190 | - * @return bool |
|
1191 | - */ |
|
1185 | + /** |
|
1186 | + * Checks if the specified variable is an integer or a string containing an integer. |
|
1187 | + * Accepts both positive and negative integers. |
|
1188 | + * |
|
1189 | + * @param mixed $value |
|
1190 | + * @return bool |
|
1191 | + */ |
|
1192 | 1192 | public static function isInteger($value) : bool |
1193 | 1193 | { |
1194 | 1194 | if(is_int($value)) { |
@@ -1208,52 +1208,52 @@ discard block |
||
1208 | 1208 | return false; |
1209 | 1209 | } |
1210 | 1210 | |
1211 | - /** |
|
1212 | - * Converts an amount of seconds to a DateInterval object. |
|
1213 | - * |
|
1214 | - * @param int $seconds |
|
1215 | - * @return \DateInterval |
|
1216 | - * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
1217 | - * |
|
1218 | - * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
1219 | - */ |
|
1211 | + /** |
|
1212 | + * Converts an amount of seconds to a DateInterval object. |
|
1213 | + * |
|
1214 | + * @param int $seconds |
|
1215 | + * @return \DateInterval |
|
1216 | + * @throws ConvertHelper_Exception If the date interval cannot be created. |
|
1217 | + * |
|
1218 | + * @see ConvertHelper::ERROR_CANNOT_GET_DATE_DIFF |
|
1219 | + */ |
|
1220 | 1220 | public static function seconds2interval(int $seconds) : \DateInterval |
1221 | 1221 | { |
1222 | 1222 | return ConvertHelper_DateInterval::fromSeconds($seconds)->getInterval(); |
1223 | 1223 | } |
1224 | 1224 | |
1225 | - /** |
|
1226 | - * Converts a size string like "50 MB" to the corresponding byte size. |
|
1227 | - * It is case insensitive, ignores spaces, and supports both traditional |
|
1228 | - * "MB" and "MiB" notations. |
|
1229 | - * |
|
1230 | - * @param string $size |
|
1231 | - * @return int |
|
1232 | - */ |
|
1225 | + /** |
|
1226 | + * Converts a size string like "50 MB" to the corresponding byte size. |
|
1227 | + * It is case insensitive, ignores spaces, and supports both traditional |
|
1228 | + * "MB" and "MiB" notations. |
|
1229 | + * |
|
1230 | + * @param string $size |
|
1231 | + * @return int |
|
1232 | + */ |
|
1233 | 1233 | public static function size2bytes(string $size) : int |
1234 | 1234 | { |
1235 | 1235 | return self::parseSize($size)->toBytes(); |
1236 | 1236 | } |
1237 | 1237 | |
1238 | - /** |
|
1239 | - * Parses a size string like "50 MB" and returns a size notation instance |
|
1240 | - * that has utility methods to access information on it, and convert it. |
|
1241 | - * |
|
1242 | - * @param string $size |
|
1243 | - * @return ConvertHelper_SizeNotation |
|
1244 | - */ |
|
1238 | + /** |
|
1239 | + * Parses a size string like "50 MB" and returns a size notation instance |
|
1240 | + * that has utility methods to access information on it, and convert it. |
|
1241 | + * |
|
1242 | + * @param string $size |
|
1243 | + * @return ConvertHelper_SizeNotation |
|
1244 | + */ |
|
1245 | 1245 | public static function parseSize(string $size) : ConvertHelper_SizeNotation |
1246 | 1246 | { |
1247 | 1247 | return new ConvertHelper_SizeNotation($size); |
1248 | 1248 | } |
1249 | 1249 | |
1250 | - /** |
|
1251 | - * Creates a URL finder instance, which can be used to find |
|
1252 | - * URLs in a string - be it plain text, or HTML. |
|
1253 | - * |
|
1254 | - * @param string $subject |
|
1255 | - * @return ConvertHelper_URLFinder |
|
1256 | - */ |
|
1250 | + /** |
|
1251 | + * Creates a URL finder instance, which can be used to find |
|
1252 | + * URLs in a string - be it plain text, or HTML. |
|
1253 | + * |
|
1254 | + * @param string $subject |
|
1255 | + * @return ConvertHelper_URLFinder |
|
1256 | + */ |
|
1257 | 1257 | public static function createURLFinder(string $subject) : ConvertHelper_URLFinder |
1258 | 1258 | { |
1259 | 1259 | return new ConvertHelper_URLFinder($subject); |
@@ -29,19 +29,19 @@ discard block |
||
29 | 29 | const TYPE_LF = 'LF'; |
30 | 30 | const TYPE_CR = 'CR'; |
31 | 31 | |
32 | - /** |
|
33 | - * @var string |
|
34 | - */ |
|
32 | + /** |
|
33 | + * @var string |
|
34 | + */ |
|
35 | 35 | protected $char; |
36 | 36 | |
37 | - /** |
|
38 | - * @var string |
|
39 | - */ |
|
37 | + /** |
|
38 | + * @var string |
|
39 | + */ |
|
40 | 40 | protected $type; |
41 | 41 | |
42 | - /** |
|
43 | - * @var string |
|
44 | - */ |
|
42 | + /** |
|
43 | + * @var string |
|
44 | + */ |
|
45 | 45 | protected $description; |
46 | 46 | |
47 | 47 | /** |
@@ -56,33 +56,33 @@ discard block |
||
56 | 56 | $this->description = $description; |
57 | 57 | } |
58 | 58 | |
59 | - /** |
|
60 | - * The actual EOL character. |
|
61 | - * @return string |
|
62 | - */ |
|
59 | + /** |
|
60 | + * The actual EOL character. |
|
61 | + * @return string |
|
62 | + */ |
|
63 | 63 | public function getCharacter() : string |
64 | 64 | { |
65 | 65 | return $this->char; |
66 | 66 | } |
67 | 67 | |
68 | - /** |
|
69 | - * A more detailed, human readable description of the character. |
|
70 | - * @return string |
|
71 | - */ |
|
68 | + /** |
|
69 | + * A more detailed, human readable description of the character. |
|
70 | + * @return string |
|
71 | + */ |
|
72 | 72 | public function getDescription() : string |
73 | 73 | { |
74 | 74 | return $this->description; |
75 | 75 | } |
76 | 76 | |
77 | - /** |
|
78 | - * The EOL character type, e.g. "CR+LF", "CR"... |
|
79 | - * @return string |
|
80 | - * |
|
81 | - * @see ConvertHelper_EOL::TYPE_CR |
|
82 | - * @see ConvertHelper_EOL::TYPE_CRLF |
|
83 | - * @see ConvertHelper_EOL::TYPE_LF |
|
84 | - * @see ConvertHelper_EOL::TYPE_LFCR |
|
85 | - */ |
|
77 | + /** |
|
78 | + * The EOL character type, e.g. "CR+LF", "CR"... |
|
79 | + * @return string |
|
80 | + * |
|
81 | + * @see ConvertHelper_EOL::TYPE_CR |
|
82 | + * @see ConvertHelper_EOL::TYPE_CRLF |
|
83 | + * @see ConvertHelper_EOL::TYPE_LF |
|
84 | + * @see ConvertHelper_EOL::TYPE_LFCR |
|
85 | + */ |
|
86 | 86 | public function getType() : string |
87 | 87 | { |
88 | 88 | return $this->type; |
@@ -22,9 +22,9 @@ discard block |
||
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 |
||
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 |
||
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 | $ch = curl_init(); |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | return $ch; |
104 | 104 | } |
105 | 105 | |
106 | - /** |
|
107 | - * @param resource $ch |
|
108 | - */ |
|
106 | + /** |
|
107 | + * @param resource $ch |
|
108 | + */ |
|
109 | 109 | private function configureOptions($ch) : void |
110 | 110 | { |
111 | 111 | if($this->isVerboseModeEnabled()) |
@@ -33,24 +33,24 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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('"%s"', 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 |
||
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,12 +220,12 @@ discard block |
||
220 | 220 | ); |
221 | 221 | } |
222 | 222 | |
223 | - /** |
|
224 | - * Adds a HTML `br` tag. |
|
225 | - * |
|
226 | - * @return $this |
|
227 | - * @see StringBuilder::eol() |
|
228 | - */ |
|
223 | + /** |
|
224 | + * Adds a HTML `br` tag. |
|
225 | + * |
|
226 | + * @return $this |
|
227 | + * @see StringBuilder::eol() |
|
228 | + */ |
|
229 | 229 | public function nl() : StringBuilder |
230 | 230 | { |
231 | 231 | return $this->html('<br>'); |
@@ -242,52 +242,52 @@ discard block |
||
242 | 242 | return $this->nospace(PHP_EOL); |
243 | 243 | } |
244 | 244 | |
245 | - /** |
|
246 | - * Adds the current time, in the format <code>H:i:s</code>. |
|
247 | - * |
|
248 | - * @return $this |
|
249 | - */ |
|
245 | + /** |
|
246 | + * Adds the current time, in the format <code>H:i:s</code>. |
|
247 | + * |
|
248 | + * @return $this |
|
249 | + */ |
|
250 | 250 | public function time() : StringBuilder |
251 | 251 | { |
252 | 252 | return $this->add(date('H:i:s')); |
253 | 253 | } |
254 | 254 | |
255 | - /** |
|
256 | - * Adds the "Note:" text. |
|
257 | - * |
|
258 | - * @return $this |
|
259 | - */ |
|
255 | + /** |
|
256 | + * Adds the "Note:" text. |
|
257 | + * |
|
258 | + * @return $this |
|
259 | + */ |
|
260 | 260 | public function note() : StringBuilder |
261 | 261 | { |
262 | 262 | return $this->t('Note:'); |
263 | 263 | } |
264 | 264 | |
265 | - /** |
|
266 | - * Like `note()`, but as bold text. |
|
267 | - * |
|
268 | - * @return $this |
|
269 | - */ |
|
265 | + /** |
|
266 | + * Like `note()`, but as bold text. |
|
267 | + * |
|
268 | + * @return $this |
|
269 | + */ |
|
270 | 270 | public function noteBold() : StringBuilder |
271 | 271 | { |
272 | 272 | return $this->bold(sb()->note()); |
273 | 273 | } |
274 | 274 | |
275 | - /** |
|
276 | - * Adds the "Hint:" text. |
|
277 | - * |
|
278 | - * @return $this |
|
279 | - */ |
|
275 | + /** |
|
276 | + * Adds the "Hint:" text. |
|
277 | + * |
|
278 | + * @return $this |
|
279 | + */ |
|
280 | 280 | public function hint() : StringBuilder |
281 | 281 | { |
282 | 282 | return $this->t('Hint:'); |
283 | 283 | } |
284 | 284 | |
285 | - /** |
|
286 | - * Adds two linebreaks. |
|
287 | - * |
|
288 | - * @param StringBuilder_Interface|string|NULL $content |
|
289 | - * @return $this |
|
290 | - */ |
|
285 | + /** |
|
286 | + * Adds two linebreaks. |
|
287 | + * |
|
288 | + * @param StringBuilder_Interface|string|NULL $content |
|
289 | + * @return $this |
|
290 | + */ |
|
291 | 291 | public function para($content=null) : StringBuilder |
292 | 292 | { |
293 | 293 | if($content !== null) { |
@@ -297,14 +297,14 @@ discard block |
||
297 | 297 | return $this->nl()->nl(); |
298 | 298 | } |
299 | 299 | |
300 | - /** |
|
301 | - * Adds an anchor HTML tag. |
|
302 | - * |
|
303 | - * @param string $label |
|
304 | - * @param string $url |
|
305 | - * @param bool $newTab |
|
306 | - * @return $this |
|
307 | - */ |
|
300 | + /** |
|
301 | + * Adds an anchor HTML tag. |
|
302 | + * |
|
303 | + * @param string $label |
|
304 | + * @param string $url |
|
305 | + * @param bool $newTab |
|
306 | + * @return $this |
|
307 | + */ |
|
308 | 308 | public function link(string $label, string $url, bool $newTab=false) : StringBuilder |
309 | 309 | { |
310 | 310 | $target = ''; |
@@ -320,12 +320,12 @@ discard block |
||
320 | 320 | ); |
321 | 321 | } |
322 | 322 | |
323 | - /** |
|
324 | - * Wraps the string in a `code` tag. |
|
325 | - * |
|
326 | - * @param string|number|StringBuilder_Interface $string |
|
327 | - * @return $this |
|
328 | - */ |
|
323 | + /** |
|
324 | + * Wraps the string in a `code` tag. |
|
325 | + * |
|
326 | + * @param string|number|StringBuilder_Interface $string |
|
327 | + * @return $this |
|
328 | + */ |
|
329 | 329 | public function code($string) : StringBuilder |
330 | 330 | { |
331 | 331 | return $this->sf( |
@@ -334,24 +334,24 @@ discard block |
||
334 | 334 | ); |
335 | 335 | } |
336 | 336 | |
337 | - /** |
|
338 | - * Wraps the string in a `pre` tag. |
|
339 | - * |
|
340 | - * @param string|number|StringBuilder_Interface $string |
|
341 | - * @return $this |
|
342 | - */ |
|
337 | + /** |
|
338 | + * Wraps the string in a `pre` tag. |
|
339 | + * |
|
340 | + * @param string|number|StringBuilder_Interface $string |
|
341 | + * @return $this |
|
342 | + */ |
|
343 | 343 | public function pre($string) : StringBuilder |
344 | 344 | { |
345 | 345 | return $this->sf('<pre>%s</pre>', strval($string)); |
346 | 346 | } |
347 | 347 | |
348 | - /** |
|
349 | - * Wraps the text in a `span` tag with the specified classes. |
|
350 | - * |
|
351 | - * @param string|number|StringBuilder_Interface $string |
|
352 | - * @param string|string[] $classes |
|
353 | - * @return $this |
|
354 | - */ |
|
348 | + /** |
|
349 | + * Wraps the text in a `span` tag with the specified classes. |
|
350 | + * |
|
351 | + * @param string|number|StringBuilder_Interface $string |
|
352 | + * @param string|string[] $classes |
|
353 | + * @return $this |
|
354 | + */ |
|
355 | 355 | protected function spanned($string, $classes) : StringBuilder |
356 | 356 | { |
357 | 357 | if(!is_array($classes)) |
@@ -33,24 +33,24 @@ discard block |
||
33 | 33 | |
34 | 34 | const PATH_MODE_STRIP = 'strip'; |
35 | 35 | |
36 | - /** |
|
37 | - * @var string |
|
38 | - */ |
|
36 | + /** |
|
37 | + * @var string |
|
38 | + */ |
|
39 | 39 | protected $path; |
40 | 40 | |
41 | - /** |
|
42 | - * @var array |
|
43 | - */ |
|
41 | + /** |
|
42 | + * @var array |
|
43 | + */ |
|
44 | 44 | protected $found; |
45 | 45 | |
46 | - /** |
|
47 | - * The path must exist when the class is instantiated: its |
|
48 | - * real path will be determined to work with. |
|
49 | - * |
|
50 | - * @param string $path The absolute path to the target folder. |
|
51 | - * @throws FileHelper_Exception |
|
52 | - * @see FileHelper_FileFinder::ERROR_PATH_DOES_NOT_EXIST |
|
53 | - */ |
|
46 | + /** |
|
47 | + * The path must exist when the class is instantiated: its |
|
48 | + * real path will be determined to work with. |
|
49 | + * |
|
50 | + * @param string $path The absolute path to the target folder. |
|
51 | + * @throws FileHelper_Exception |
|
52 | + * @see FileHelper_FileFinder::ERROR_PATH_DOES_NOT_EXIST |
|
53 | + */ |
|
54 | 54 | public function __construct(string $path) |
55 | 55 | { |
56 | 56 | $real = realpath($path); |
@@ -82,66 +82,66 @@ discard block |
||
82 | 82 | ); |
83 | 83 | } |
84 | 84 | |
85 | - /** |
|
86 | - * Enables extension stripping, to return file names without extension. |
|
87 | - * |
|
88 | - * @return FileHelper_FileFinder |
|
89 | - */ |
|
85 | + /** |
|
86 | + * Enables extension stripping, to return file names without extension. |
|
87 | + * |
|
88 | + * @return FileHelper_FileFinder |
|
89 | + */ |
|
90 | 90 | public function stripExtensions() : FileHelper_FileFinder |
91 | 91 | { |
92 | 92 | return $this->setOption('strip-extensions', true); |
93 | 93 | } |
94 | 94 | |
95 | - /** |
|
96 | - * Enables recursing into subfolders. |
|
97 | - * |
|
98 | - * @return FileHelper_FileFinder |
|
99 | - */ |
|
95 | + /** |
|
96 | + * Enables recursing into subfolders. |
|
97 | + * |
|
98 | + * @return FileHelper_FileFinder |
|
99 | + */ |
|
100 | 100 | public function makeRecursive() : FileHelper_FileFinder |
101 | 101 | { |
102 | 102 | return $this->setOption('recursive', true); |
103 | 103 | } |
104 | 104 | |
105 | - /** |
|
106 | - * Retrieves all extensions that were added to |
|
107 | - * the include list. |
|
108 | - * |
|
109 | - * @return string[] |
|
110 | - */ |
|
105 | + /** |
|
106 | + * Retrieves all extensions that were added to |
|
107 | + * the include list. |
|
108 | + * |
|
109 | + * @return string[] |
|
110 | + */ |
|
111 | 111 | public function getIncludeExtensions() : array |
112 | 112 | { |
113 | 113 | return $this->getArrayOption('include-extensions'); |
114 | 114 | } |
115 | 115 | |
116 | - /** |
|
117 | - * Includes a single extension in the file search: only |
|
118 | - * files with this extension will be used in the results. |
|
119 | - * |
|
120 | - * NOTE: Included extensions take precedence before excluded |
|
121 | - * extensions. If any excluded extensions are specified, they |
|
122 | - * will be ignored. |
|
123 | - * |
|
124 | - * @param string $extension Extension name, without dot (`php` for example). |
|
125 | - * @return FileHelper_FileFinder |
|
126 | - * @see FileHelper_FileFinder::includeExtensions() |
|
127 | - */ |
|
116 | + /** |
|
117 | + * Includes a single extension in the file search: only |
|
118 | + * files with this extension will be used in the results. |
|
119 | + * |
|
120 | + * NOTE: Included extensions take precedence before excluded |
|
121 | + * extensions. If any excluded extensions are specified, they |
|
122 | + * will be ignored. |
|
123 | + * |
|
124 | + * @param string $extension Extension name, without dot (`php` for example). |
|
125 | + * @return FileHelper_FileFinder |
|
126 | + * @see FileHelper_FileFinder::includeExtensions() |
|
127 | + */ |
|
128 | 128 | public function includeExtension(string $extension) : FileHelper_FileFinder |
129 | 129 | { |
130 | 130 | return $this->includeExtensions(array($extension)); |
131 | 131 | } |
132 | 132 | |
133 | - /** |
|
134 | - * Includes several extensions in the file search: only |
|
135 | - * files with these extensions wil be used in the results. |
|
136 | - * |
|
137 | - * NOTE: Included extensions take precedence before excluded |
|
138 | - * extensions. If any excluded extensions are specified, they |
|
139 | - * will be ignored. |
|
140 | - * |
|
141 | - * @param array $extensions Extension names, without dot (`php` for example). |
|
142 | - * @return FileHelper_FileFinder |
|
143 | - * @see FileHelper_FileFinder::includeExtension() |
|
144 | - */ |
|
133 | + /** |
|
134 | + * Includes several extensions in the file search: only |
|
135 | + * files with these extensions wil be used in the results. |
|
136 | + * |
|
137 | + * NOTE: Included extensions take precedence before excluded |
|
138 | + * extensions. If any excluded extensions are specified, they |
|
139 | + * will be ignored. |
|
140 | + * |
|
141 | + * @param array $extensions Extension names, without dot (`php` for example). |
|
142 | + * @return FileHelper_FileFinder |
|
143 | + * @see FileHelper_FileFinder::includeExtension() |
|
144 | + */ |
|
145 | 145 | public function includeExtensions(array $extensions) : FileHelper_FileFinder |
146 | 146 | { |
147 | 147 | $items = $this->getIncludeExtensions(); |
@@ -152,37 +152,37 @@ discard block |
||
152 | 152 | return $this; |
153 | 153 | } |
154 | 154 | |
155 | - /** |
|
156 | - * Retrieves a list of all extensions currently set as |
|
157 | - * excluded from the search. |
|
158 | - * |
|
159 | - * @return string[] |
|
160 | - */ |
|
155 | + /** |
|
156 | + * Retrieves a list of all extensions currently set as |
|
157 | + * excluded from the search. |
|
158 | + * |
|
159 | + * @return string[] |
|
160 | + */ |
|
161 | 161 | public function getExcludeExtensions() : array |
162 | 162 | { |
163 | 163 | return $this->getArrayOption('exclude-extensions'); |
164 | 164 | } |
165 | 165 | |
166 | - /** |
|
167 | - * Excludes a single extension from the search. |
|
168 | - * |
|
169 | - * @param string $extension Extension name, without dot (`php` for example). |
|
170 | - * @return FileHelper_FileFinder |
|
171 | - * @see FileHelper_FileFinder::excludeExtensions() |
|
172 | - */ |
|
166 | + /** |
|
167 | + * Excludes a single extension from the search. |
|
168 | + * |
|
169 | + * @param string $extension Extension name, without dot (`php` for example). |
|
170 | + * @return FileHelper_FileFinder |
|
171 | + * @see FileHelper_FileFinder::excludeExtensions() |
|
172 | + */ |
|
173 | 173 | public function excludeExtension(string $extension) : FileHelper_FileFinder |
174 | 174 | { |
175 | 175 | return $this->excludeExtensions(array($extension)); |
176 | 176 | } |
177 | 177 | |
178 | - /** |
|
179 | - * Add several extensions to the list of extensions to |
|
180 | - * exclude from the file search. |
|
181 | - * |
|
182 | - * @param array $extensions Extension names, without dot (`php` for example). |
|
183 | - * @return FileHelper_FileFinder |
|
184 | - * @see FileHelper_FileFinder::excludeExtension() |
|
185 | - */ |
|
178 | + /** |
|
179 | + * Add several extensions to the list of extensions to |
|
180 | + * exclude from the file search. |
|
181 | + * |
|
182 | + * @param array $extensions Extension names, without dot (`php` for example). |
|
183 | + * @return FileHelper_FileFinder |
|
184 | + * @see FileHelper_FileFinder::excludeExtension() |
|
185 | + */ |
|
186 | 186 | public function excludeExtensions(array $extensions) : FileHelper_FileFinder |
187 | 187 | { |
188 | 188 | $items = $this->getExcludeExtensions(); |
@@ -193,52 +193,52 @@ discard block |
||
193 | 193 | return $this; |
194 | 194 | } |
195 | 195 | |
196 | - /** |
|
197 | - * In this mode, the entire path to the file will be stripped, |
|
198 | - * leaving only the file name in the files list. |
|
199 | - * |
|
200 | - * @return FileHelper_FileFinder |
|
201 | - */ |
|
196 | + /** |
|
197 | + * In this mode, the entire path to the file will be stripped, |
|
198 | + * leaving only the file name in the files list. |
|
199 | + * |
|
200 | + * @return FileHelper_FileFinder |
|
201 | + */ |
|
202 | 202 | public function setPathmodeStrip() : FileHelper_FileFinder |
203 | 203 | { |
204 | 204 | return $this->setPathmode(self::PATH_MODE_STRIP); |
205 | 205 | } |
206 | 206 | |
207 | - /** |
|
208 | - * In this mode, only the path relative to the source folder |
|
209 | - * will be included in the files list. |
|
210 | - * |
|
211 | - * @return FileHelper_FileFinder |
|
212 | - */ |
|
207 | + /** |
|
208 | + * In this mode, only the path relative to the source folder |
|
209 | + * will be included in the files list. |
|
210 | + * |
|
211 | + * @return FileHelper_FileFinder |
|
212 | + */ |
|
213 | 213 | public function setPathmodeRelative() : FileHelper_FileFinder |
214 | 214 | { |
215 | 215 | return $this->setPathmode(self::PATH_MODE_RELATIVE); |
216 | 216 | } |
217 | 217 | |
218 | - /** |
|
219 | - * In this mode, the full, absolute paths to the files will |
|
220 | - * be included in the files list. |
|
221 | - * |
|
222 | - * @return FileHelper_FileFinder |
|
223 | - */ |
|
218 | + /** |
|
219 | + * In this mode, the full, absolute paths to the files will |
|
220 | + * be included in the files list. |
|
221 | + * |
|
222 | + * @return FileHelper_FileFinder |
|
223 | + */ |
|
224 | 224 | public function setPathmodeAbsolute() : FileHelper_FileFinder |
225 | 225 | { |
226 | 226 | return $this->setPathmode(self::PATH_MODE_ABSOLUTE); |
227 | 227 | } |
228 | 228 | |
229 | - /** |
|
230 | - * This sets a character or string to replace the slashes |
|
231 | - * in the paths with. |
|
232 | - * |
|
233 | - * This is used for example in the `getPHPClassNames()` |
|
234 | - * method, to return files from subfolders as class names |
|
235 | - * using the "_" character: |
|
236 | - * |
|
237 | - * Subfolder/To/File.php => Subfolder_To_File.php |
|
238 | - * |
|
239 | - * @param string $character |
|
240 | - * @return FileHelper_FileFinder |
|
241 | - */ |
|
229 | + /** |
|
230 | + * This sets a character or string to replace the slashes |
|
231 | + * in the paths with. |
|
232 | + * |
|
233 | + * This is used for example in the `getPHPClassNames()` |
|
234 | + * method, to return files from subfolders as class names |
|
235 | + * using the "_" character: |
|
236 | + * |
|
237 | + * Subfolder/To/File.php => Subfolder_To_File.php |
|
238 | + * |
|
239 | + * @param string $character |
|
240 | + * @return FileHelper_FileFinder |
|
241 | + */ |
|
242 | 242 | public function setSlashReplacement(string $character) : FileHelper_FileFinder |
243 | 243 | { |
244 | 244 | return $this->setOption('slash-replacement', $character); |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | return $this->setOption('pathmode', $mode); |
250 | 250 | } |
251 | 251 | |
252 | - /** |
|
253 | - * Retrieves a list of all matching file names/paths, |
|
254 | - * depending on the selected options. |
|
255 | - * |
|
256 | - * @return string[] |
|
257 | - */ |
|
252 | + /** |
|
253 | + * Retrieves a list of all matching file names/paths, |
|
254 | + * depending on the selected options. |
|
255 | + * |
|
256 | + * @return string[] |
|
257 | + */ |
|
258 | 258 | public function getAll() : array |
259 | 259 | { |
260 | 260 | $this->find($this->path, true); |
@@ -262,24 +262,24 @@ discard block |
||
262 | 262 | return $this->found; |
263 | 263 | } |
264 | 264 | |
265 | - /** |
|
266 | - * Retrieves only PHP files. Can be combined with other |
|
267 | - * options like enabling recursion into subfolders. |
|
268 | - * |
|
269 | - * @return string[] |
|
270 | - */ |
|
265 | + /** |
|
266 | + * Retrieves only PHP files. Can be combined with other |
|
267 | + * options like enabling recursion into subfolders. |
|
268 | + * |
|
269 | + * @return string[] |
|
270 | + */ |
|
271 | 271 | public function getPHPFiles() : array |
272 | 272 | { |
273 | 273 | $this->includeExtensions(array('php')); |
274 | 274 | return $this->getAll(); |
275 | 275 | } |
276 | 276 | |
277 | - /** |
|
278 | - * Generates PHP class names from file paths: it replaces |
|
279 | - * slashes with underscores, and removes file extensions. |
|
280 | - * |
|
281 | - * @return string[] An array of PHP file names without extension. |
|
282 | - */ |
|
277 | + /** |
|
278 | + * Generates PHP class names from file paths: it replaces |
|
279 | + * slashes with underscores, and removes file extensions. |
|
280 | + * |
|
281 | + * @return string[] An array of PHP file names without extension. |
|
282 | + */ |
|
283 | 283 | public function getPHPClassNames() : array |
284 | 284 | { |
285 | 285 | $this->includeExtensions(array('php')); |
@@ -350,13 +350,13 @@ discard block |
||
350 | 350 | return $path; |
351 | 351 | } |
352 | 352 | |
353 | - /** |
|
354 | - * Checks whether the specified extension is allowed |
|
355 | - * with the current settings. |
|
356 | - * |
|
357 | - * @param string $extension |
|
358 | - * @return bool |
|
359 | - */ |
|
353 | + /** |
|
354 | + * Checks whether the specified extension is allowed |
|
355 | + * with the current settings. |
|
356 | + * |
|
357 | + * @param string $extension |
|
358 | + * @return bool |
|
359 | + */ |
|
360 | 360 | protected function filterExclusion(string $extension) : bool |
361 | 361 | { |
362 | 362 | $include = $this->getOption('include-extensions'); |
@@ -378,12 +378,12 @@ discard block |
||
378 | 378 | return true; |
379 | 379 | } |
380 | 380 | |
381 | - /** |
|
382 | - * Adjusts the path according to the selected path mode. |
|
383 | - * |
|
384 | - * @param string $path |
|
385 | - * @return string |
|
386 | - */ |
|
381 | + /** |
|
382 | + * Adjusts the path according to the selected path mode. |
|
383 | + * |
|
384 | + * @param string $path |
|
385 | + * @return string |
|
386 | + */ |
|
387 | 387 | protected function filterPath(string $path) : string |
388 | 388 | { |
389 | 389 | switch($this->getStringOption('pathmode')) |