@@ -34,39 +34,39 @@ discard block |
||
| 34 | 34 | const SECONDS_PER_MONTH_APPROX = 2505600; // imprecise - for 29 days, only for approximations. |
| 35 | 35 | const SECONDS_PER_YEAR = 31536000; |
| 36 | 36 | |
| 37 | - /** |
|
| 38 | - * @var int |
|
| 39 | - */ |
|
| 37 | + /** |
|
| 38 | + * @var int |
|
| 39 | + */ |
|
| 40 | 40 | protected $dateFrom; |
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * @var int |
|
| 44 | - */ |
|
| 42 | + /** |
|
| 43 | + * @var int |
|
| 44 | + */ |
|
| 45 | 45 | protected $dateTo; |
| 46 | 46 | |
| 47 | - /** |
|
| 48 | - * @var bool |
|
| 49 | - */ |
|
| 47 | + /** |
|
| 48 | + * @var bool |
|
| 49 | + */ |
|
| 50 | 50 | protected $future = false; |
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * @var string |
|
| 54 | - */ |
|
| 52 | + /** |
|
| 53 | + * @var string |
|
| 54 | + */ |
|
| 55 | 55 | protected $interval = ''; |
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * @var int |
|
| 59 | - */ |
|
| 57 | + /** |
|
| 58 | + * @var int |
|
| 59 | + */ |
|
| 60 | 60 | protected $difference = 0; |
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * @var int |
|
| 64 | - */ |
|
| 62 | + /** |
|
| 63 | + * @var int |
|
| 64 | + */ |
|
| 65 | 65 | protected $dateDiff = 0; |
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * @var array<string,array<string,string>>|NULL |
|
| 69 | - */ |
|
| 67 | + /** |
|
| 68 | + * @var array<string,array<string,string>>|NULL |
|
| 69 | + */ |
|
| 70 | 70 | protected static $texts = null; |
| 71 | 71 | |
| 72 | 72 | public function __construct() |
@@ -86,17 +86,17 @@ discard block |
||
| 86 | 86 | self::$texts = null; |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | - /** |
|
| 90 | - * Sets the origin date to calculate from. |
|
| 91 | - * |
|
| 92 | - * NOTE: if this is further in the future than |
|
| 93 | - * the to: date, it will be considered as a |
|
| 94 | - * calculation for something to come, i.e. |
|
| 95 | - * "In two days". |
|
| 96 | - * |
|
| 97 | - * @param DateTime $date |
|
| 98 | - * @return ConvertHelper_DurationConverter |
|
| 99 | - */ |
|
| 89 | + /** |
|
| 90 | + * Sets the origin date to calculate from. |
|
| 91 | + * |
|
| 92 | + * NOTE: if this is further in the future than |
|
| 93 | + * the to: date, it will be considered as a |
|
| 94 | + * calculation for something to come, i.e. |
|
| 95 | + * "In two days". |
|
| 96 | + * |
|
| 97 | + * @param DateTime $date |
|
| 98 | + * @return ConvertHelper_DurationConverter |
|
| 99 | + */ |
|
| 100 | 100 | public function setDateFrom(DateTime $date) : ConvertHelper_DurationConverter |
| 101 | 101 | { |
| 102 | 102 | $this->dateFrom = ConvertHelper::date2timestamp($date); |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | return $this; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | - /** |
|
| 108 | - * Sets the date to calculate to. Defaults to |
|
| 109 | - * the current time if not set. |
|
| 110 | - * |
|
| 111 | - * @param DateTime $date |
|
| 112 | - * @return ConvertHelper_DurationConverter |
|
| 113 | - */ |
|
| 107 | + /** |
|
| 108 | + * Sets the date to calculate to. Defaults to |
|
| 109 | + * the current time if not set. |
|
| 110 | + * |
|
| 111 | + * @param DateTime $date |
|
| 112 | + * @return ConvertHelper_DurationConverter |
|
| 113 | + */ |
|
| 114 | 114 | public function setDateTo(DateTime $date) : ConvertHelper_DurationConverter |
| 115 | 115 | { |
| 116 | 116 | $this->dateTo = ConvertHelper::date2timestamp($date); |
@@ -118,14 +118,14 @@ discard block |
||
| 118 | 118 | return $this; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - /** |
|
| 122 | - * Converts the specified dates to a human-readable string. |
|
| 123 | - * |
|
| 124 | - * @throws ConvertHelper_Exception |
|
| 125 | - * @return string |
|
| 126 | - * |
|
| 127 | - * @see ConvertHelper_DurationConverter::ERROR_NO_DATE_FROM_SET |
|
| 128 | - */ |
|
| 121 | + /** |
|
| 122 | + * Converts the specified dates to a human-readable string. |
|
| 123 | + * |
|
| 124 | + * @throws ConvertHelper_Exception |
|
| 125 | + * @return string |
|
| 126 | + * |
|
| 127 | + * @see ConvertHelper_DurationConverter::ERROR_NO_DATE_FROM_SET |
|
| 128 | + */ |
|
| 129 | 129 | public function convert() : string |
| 130 | 130 | { |
| 131 | 131 | $this->initTexts(); |
@@ -10,45 +10,45 @@ discard block |
||
| 10 | 10 | const TYPE_METHOD_CALL = 'method'; |
| 11 | 11 | const TYPE_SCRIPT_START = 'start'; |
| 12 | 12 | |
| 13 | - /** |
|
| 14 | - * @var ConvertHelper_ThrowableInfo |
|
| 15 | - */ |
|
| 13 | + /** |
|
| 14 | + * @var ConvertHelper_ThrowableInfo |
|
| 15 | + */ |
|
| 16 | 16 | protected $info; |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * @var VariableInfo[] |
|
| 20 | - */ |
|
| 18 | + /** |
|
| 19 | + * @var VariableInfo[] |
|
| 20 | + */ |
|
| 21 | 21 | protected $args = array(); |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * The source file, if any |
|
| 25 | - * @var string |
|
| 26 | - */ |
|
| 23 | + /** |
|
| 24 | + * The source file, if any |
|
| 25 | + * @var string |
|
| 26 | + */ |
|
| 27 | 27 | protected $file = ''; |
| 28 | 28 | |
| 29 | - /** |
|
| 30 | - * @var string |
|
| 31 | - */ |
|
| 29 | + /** |
|
| 30 | + * @var string |
|
| 31 | + */ |
|
| 32 | 32 | protected $class = ''; |
| 33 | 33 | |
| 34 | - /** |
|
| 35 | - * @var integer |
|
| 36 | - */ |
|
| 34 | + /** |
|
| 35 | + * @var integer |
|
| 36 | + */ |
|
| 37 | 37 | protected $line = 0; |
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * @var int |
|
| 41 | - */ |
|
| 39 | + /** |
|
| 40 | + * @var int |
|
| 41 | + */ |
|
| 42 | 42 | protected $position = 1; |
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * @var string |
|
| 46 | - */ |
|
| 44 | + /** |
|
| 45 | + * @var string |
|
| 46 | + */ |
|
| 47 | 47 | protected $function = ''; |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * @var string |
|
| 51 | - */ |
|
| 49 | + /** |
|
| 50 | + * @var string |
|
| 51 | + */ |
|
| 52 | 52 | protected $type = self::TYPE_SCRIPT_START; |
| 53 | 53 | |
| 54 | 54 | /** |
@@ -79,10 +79,10 @@ discard block |
||
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * 1-based position of the call in the calls list. |
|
| 84 | - * @return int |
|
| 85 | - */ |
|
| 82 | + /** |
|
| 83 | + * 1-based position of the call in the calls list. |
|
| 84 | + * @return int |
|
| 85 | + */ |
|
| 86 | 86 | public function getPosition() : int |
| 87 | 87 | { |
| 88 | 88 | return $this->position; |
@@ -93,18 +93,18 @@ discard block |
||
| 93 | 93 | return $this->line; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - /** |
|
| 97 | - * Whether the call had any arguments. |
|
| 98 | - * @return bool |
|
| 99 | - */ |
|
| 96 | + /** |
|
| 97 | + * Whether the call had any arguments. |
|
| 98 | + * @return bool |
|
| 99 | + */ |
|
| 100 | 100 | public function hasArguments() : bool |
| 101 | 101 | { |
| 102 | 102 | return !empty($this->args); |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - /** |
|
| 106 | - * @return VariableInfo[] |
|
| 107 | - */ |
|
| 105 | + /** |
|
| 106 | + * @return VariableInfo[] |
|
| 107 | + */ |
|
| 108 | 108 | public function getArguments() |
| 109 | 109 | { |
| 110 | 110 | return $this->args; |
@@ -244,31 +244,31 @@ discard block |
||
| 244 | 244 | return implode(', ', $tokens); |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - /** |
|
| 248 | - * Retrieves the type of call: typically a function |
|
| 249 | - * call, or a method call of an object. Note that the |
|
| 250 | - * first call in a script does not have either. |
|
| 251 | - * |
|
| 252 | - * @return string |
|
| 253 | - * |
|
| 254 | - * @see ConvertHelper_ThrowableInfo_Call::TYPE_FUNCTION_CALL |
|
| 255 | - * @see ConvertHelper_ThrowableInfo_Call::TYPE_METHOD_CALL |
|
| 256 | - * @see ConvertHelper_ThrowableInfo_Call::TYPE_SCRIPT_START |
|
| 257 | - * @see ConvertHelper_ThrowableInfo_Call::hasFunction() |
|
| 258 | - * @see ConvertHelper_ThrowableInfo_Call::hasClass() |
|
| 259 | - */ |
|
| 247 | + /** |
|
| 248 | + * Retrieves the type of call: typically a function |
|
| 249 | + * call, or a method call of an object. Note that the |
|
| 250 | + * first call in a script does not have either. |
|
| 251 | + * |
|
| 252 | + * @return string |
|
| 253 | + * |
|
| 254 | + * @see ConvertHelper_ThrowableInfo_Call::TYPE_FUNCTION_CALL |
|
| 255 | + * @see ConvertHelper_ThrowableInfo_Call::TYPE_METHOD_CALL |
|
| 256 | + * @see ConvertHelper_ThrowableInfo_Call::TYPE_SCRIPT_START |
|
| 257 | + * @see ConvertHelper_ThrowableInfo_Call::hasFunction() |
|
| 258 | + * @see ConvertHelper_ThrowableInfo_Call::hasClass() |
|
| 259 | + */ |
|
| 260 | 260 | public function getType() : string |
| 261 | 261 | { |
| 262 | 262 | return $this->type; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - /** |
|
| 266 | - * Serializes the call to an array, with all |
|
| 267 | - * necessary information. Can be used to restore |
|
| 268 | - * the call later using {@link ConvertHelper_ThrowableInfo_Call::fromSerialized()}. |
|
| 269 | - * |
|
| 270 | - * @return array<string,mixed> |
|
| 271 | - */ |
|
| 265 | + /** |
|
| 266 | + * Serializes the call to an array, with all |
|
| 267 | + * necessary information. Can be used to restore |
|
| 268 | + * the call later using {@link ConvertHelper_ThrowableInfo_Call::fromSerialized()}. |
|
| 269 | + * |
|
| 270 | + * @return array<string,mixed> |
|
| 271 | + */ |
|
| 272 | 272 | public function serialize() : array |
| 273 | 273 | { |
| 274 | 274 | $result = array( |
@@ -27,16 +27,16 @@ |
||
| 27 | 27 | |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * We parse the query string ourselves, because the PHP implementation |
|
| 32 | - * of parse_str has limitations that do not apply to query strings. This |
|
| 33 | - * is due to the fact that parse_str has to create PHP-compatible variable |
|
| 34 | - * names from the parameters. URL parameters simply allow way more things |
|
| 35 | - * than PHP variable names. |
|
| 36 | - * |
|
| 37 | - * @param string $queryString |
|
| 38 | - * @return array<string,string> |
|
| 39 | - */ |
|
| 30 | + /** |
|
| 31 | + * We parse the query string ourselves, because the PHP implementation |
|
| 32 | + * of parse_str has limitations that do not apply to query strings. This |
|
| 33 | + * is due to the fact that parse_str has to create PHP-compatible variable |
|
| 34 | + * names from the parameters. URL parameters simply allow way more things |
|
| 35 | + * than PHP variable names. |
|
| 36 | + * |
|
| 37 | + * @param string $queryString |
|
| 38 | + * @return array<string,string> |
|
| 39 | + */ |
|
| 40 | 40 | public function parse(string $queryString) : array |
| 41 | 41 | { |
| 42 | 42 | // allow HTML entities notation |
@@ -60,31 +60,31 @@ discard block |
||
| 60 | 60 | protected static $utfBoms; |
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | - * Opens a serialized file and returns the unserialized data. |
|
| 64 | - * |
|
| 65 | - * @param string $file |
|
| 66 | - * @throws FileHelper_Exception |
|
| 67 | - * @return array<int|string,mixed> |
|
| 68 | - * @deprecated Use parseSerializedFile() instead. |
|
| 69 | - * @see FileHelper::parseSerializedFile() |
|
| 70 | - */ |
|
| 63 | + * Opens a serialized file and returns the unserialized data. |
|
| 64 | + * |
|
| 65 | + * @param string $file |
|
| 66 | + * @throws FileHelper_Exception |
|
| 67 | + * @return array<int|string,mixed> |
|
| 68 | + * @deprecated Use parseSerializedFile() instead. |
|
| 69 | + * @see FileHelper::parseSerializedFile() |
|
| 70 | + */ |
|
| 71 | 71 | public static function openUnserialized(string $file) : array |
| 72 | 72 | { |
| 73 | 73 | return self::parseSerializedFile($file); |
| 74 | 74 | } |
| 75 | 75 | |
| 76 | - /** |
|
| 77 | - * Opens a serialized file and returns the unserialized data. |
|
| 78 | - * |
|
| 79 | - * @param string $file |
|
| 80 | - * @throws FileHelper_Exception |
|
| 81 | - * @return array<int|string,mixed> |
|
| 82 | - * @see FileHelper::parseSerializedFile() |
|
| 83 | - * |
|
| 84 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 85 | - * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ |
|
| 86 | - * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED |
|
| 87 | - */ |
|
| 76 | + /** |
|
| 77 | + * Opens a serialized file and returns the unserialized data. |
|
| 78 | + * |
|
| 79 | + * @param string $file |
|
| 80 | + * @throws FileHelper_Exception |
|
| 81 | + * @return array<int|string,mixed> |
|
| 82 | + * @see FileHelper::parseSerializedFile() |
|
| 83 | + * |
|
| 84 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 85 | + * @see FileHelper::ERROR_SERIALIZED_FILE_CANNOT_BE_READ |
|
| 86 | + * @see FileHelper::ERROR_SERIALIZED_FILE_UNSERIALZE_FAILED |
|
| 87 | + */ |
|
| 88 | 88 | public static function parseSerializedFile(string $file) : array |
| 89 | 89 | { |
| 90 | 90 | self::requireFileExists($file); |
@@ -160,13 +160,13 @@ discard block |
||
| 160 | 160 | return rmdir($rootFolder); |
| 161 | 161 | } |
| 162 | 162 | |
| 163 | - /** |
|
| 164 | - * Create a folder, if it does not exist yet. |
|
| 165 | - * |
|
| 166 | - * @param string $path |
|
| 167 | - * @throws FileHelper_Exception |
|
| 168 | - * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
| 169 | - */ |
|
| 163 | + /** |
|
| 164 | + * Create a folder, if it does not exist yet. |
|
| 165 | + * |
|
| 166 | + * @param string $path |
|
| 167 | + * @throws FileHelper_Exception |
|
| 168 | + * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
| 169 | + */ |
|
| 170 | 170 | public static function createFolder(string $path) : void |
| 171 | 171 | { |
| 172 | 172 | if(is_dir($path) || mkdir($path, 0777, true)) { |
@@ -213,22 +213,22 @@ discard block |
||
| 213 | 213 | } |
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - /** |
|
| 217 | - * Copies a file to the target location. Includes checks |
|
| 218 | - * for most error sources, like the source file not being |
|
| 219 | - * readable. Automatically creates the target folder if it |
|
| 220 | - * does not exist yet. |
|
| 221 | - * |
|
| 222 | - * @param string $sourcePath |
|
| 223 | - * @param string $targetPath |
|
| 224 | - * @throws FileHelper_Exception |
|
| 225 | - * |
|
| 226 | - * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
| 227 | - * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND |
|
| 228 | - * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE |
|
| 229 | - * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE |
|
| 230 | - * @see FileHelper::ERROR_CANNOT_COPY_FILE |
|
| 231 | - */ |
|
| 216 | + /** |
|
| 217 | + * Copies a file to the target location. Includes checks |
|
| 218 | + * for most error sources, like the source file not being |
|
| 219 | + * readable. Automatically creates the target folder if it |
|
| 220 | + * does not exist yet. |
|
| 221 | + * |
|
| 222 | + * @param string $sourcePath |
|
| 223 | + * @param string $targetPath |
|
| 224 | + * @throws FileHelper_Exception |
|
| 225 | + * |
|
| 226 | + * @see FileHelper::ERROR_CANNOT_CREATE_FOLDER |
|
| 227 | + * @see FileHelper::ERROR_SOURCE_FILE_NOT_FOUND |
|
| 228 | + * @see FileHelper::ERROR_SOURCE_FILE_NOT_READABLE |
|
| 229 | + * @see FileHelper::ERROR_TARGET_COPY_FOLDER_NOT_WRITABLE |
|
| 230 | + * @see FileHelper::ERROR_CANNOT_COPY_FILE |
|
| 231 | + */ |
|
| 232 | 232 | public static function copyFile(string $sourcePath, string $targetPath) : void |
| 233 | 233 | { |
| 234 | 234 | self::requireFileExists($sourcePath, self::ERROR_SOURCE_FILE_NOT_FOUND); |
@@ -268,15 +268,15 @@ discard block |
||
| 268 | 268 | ); |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | - /** |
|
| 272 | - * Deletes the target file. Ignored if it cannot be found, |
|
| 273 | - * and throws an exception if it fails. |
|
| 274 | - * |
|
| 275 | - * @param string $filePath |
|
| 276 | - * @throws FileHelper_Exception |
|
| 277 | - * |
|
| 278 | - * @see FileHelper::ERROR_CANNOT_DELETE_FILE |
|
| 279 | - */ |
|
| 271 | + /** |
|
| 272 | + * Deletes the target file. Ignored if it cannot be found, |
|
| 273 | + * and throws an exception if it fails. |
|
| 274 | + * |
|
| 275 | + * @param string $filePath |
|
| 276 | + * @throws FileHelper_Exception |
|
| 277 | + * |
|
| 278 | + * @see FileHelper::ERROR_CANNOT_DELETE_FILE |
|
| 279 | + */ |
|
| 280 | 280 | public static function deleteFile(string $filePath) : void |
| 281 | 281 | { |
| 282 | 282 | if(!file_exists($filePath)) { |
@@ -298,15 +298,15 @@ discard block |
||
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | /** |
| 301 | - * Creates a new CSV parser instance and returns it. |
|
| 302 | - * |
|
| 303 | - * @param string $delimiter |
|
| 304 | - * @param string $enclosure |
|
| 305 | - * @param string $escape |
|
| 306 | - * @param bool $heading |
|
| 307 | - * @return Csv |
|
| 301 | + * Creates a new CSV parser instance and returns it. |
|
| 302 | + * |
|
| 303 | + * @param string $delimiter |
|
| 304 | + * @param string $enclosure |
|
| 305 | + * @param string $escape |
|
| 306 | + * @param bool $heading |
|
| 307 | + * @return Csv |
|
| 308 | 308 | * @see CSVHelper::createParser() |
| 309 | - */ |
|
| 309 | + */ |
|
| 310 | 310 | public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv |
| 311 | 311 | { |
| 312 | 312 | if($delimiter==='') { $delimiter = ';'; } |
@@ -319,21 +319,21 @@ discard block |
||
| 319 | 319 | return $parser; |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | - /** |
|
| 323 | - * Parses all lines in the specified string and returns an |
|
| 324 | - * indexed array with all csv values in each line. |
|
| 325 | - * |
|
| 326 | - * @param string $csv |
|
| 327 | - * @param string $delimiter |
|
| 328 | - * @param string $enclosure |
|
| 329 | - * @param string $escape |
|
| 330 | - * @param bool $heading |
|
| 331 | - * @return array<int,array<string,string>> |
|
| 332 | - * @throws FileHelper_Exception |
|
| 333 | - * |
|
| 334 | - * @see parseCSVFile() |
|
| 335 | - * @see FileHelper::ERROR_PARSING_CSV |
|
| 336 | - */ |
|
| 322 | + /** |
|
| 323 | + * Parses all lines in the specified string and returns an |
|
| 324 | + * indexed array with all csv values in each line. |
|
| 325 | + * |
|
| 326 | + * @param string $csv |
|
| 327 | + * @param string $delimiter |
|
| 328 | + * @param string $enclosure |
|
| 329 | + * @param string $escape |
|
| 330 | + * @param bool $heading |
|
| 331 | + * @return array<int,array<string,string>> |
|
| 332 | + * @throws FileHelper_Exception |
|
| 333 | + * |
|
| 334 | + * @see parseCSVFile() |
|
| 335 | + * @see FileHelper::ERROR_PARSING_CSV |
|
| 336 | + */ |
|
| 337 | 337 | public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
| 338 | 338 | { |
| 339 | 339 | $parser = self::createCSVParser($delimiter, $enclosure, '\\', $heading); |
@@ -521,27 +521,27 @@ discard block |
||
| 521 | 521 | ); |
| 522 | 522 | } |
| 523 | 523 | |
| 524 | - /** |
|
| 525 | - * Verifies whether the target file is a PHP file. The path |
|
| 526 | - * to the file can be a path to a file as a string, or a |
|
| 527 | - * DirectoryIterator object instance. |
|
| 528 | - * |
|
| 529 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
| 530 | - * @return boolean |
|
| 531 | - */ |
|
| 524 | + /** |
|
| 525 | + * Verifies whether the target file is a PHP file. The path |
|
| 526 | + * to the file can be a path to a file as a string, or a |
|
| 527 | + * DirectoryIterator object instance. |
|
| 528 | + * |
|
| 529 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
| 530 | + * @return boolean |
|
| 531 | + */ |
|
| 532 | 532 | public static function isPHPFile($pathOrDirIterator) : bool |
| 533 | 533 | { |
| 534 | - return self::getExtension($pathOrDirIterator) === 'php'; |
|
| 534 | + return self::getExtension($pathOrDirIterator) === 'php'; |
|
| 535 | 535 | } |
| 536 | 536 | |
| 537 | - /** |
|
| 538 | - * Retrieves the extension of the specified file. Can be a path |
|
| 539 | - * to a file as a string, or a DirectoryIterator object instance. |
|
| 540 | - * |
|
| 541 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
| 542 | - * @param bool $lowercase |
|
| 543 | - * @return string |
|
| 544 | - */ |
|
| 537 | + /** |
|
| 538 | + * Retrieves the extension of the specified file. Can be a path |
|
| 539 | + * to a file as a string, or a DirectoryIterator object instance. |
|
| 540 | + * |
|
| 541 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
| 542 | + * @param bool $lowercase |
|
| 543 | + * @return string |
|
| 544 | + */ |
|
| 545 | 545 | public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string |
| 546 | 546 | { |
| 547 | 547 | if($pathOrDirIterator instanceof DirectoryIterator) { |
@@ -552,38 +552,38 @@ discard block |
||
| 552 | 552 | |
| 553 | 553 | $ext = pathinfo($filename, PATHINFO_EXTENSION); |
| 554 | 554 | if($lowercase) { |
| 555 | - $ext = mb_strtolower($ext); |
|
| 555 | + $ext = mb_strtolower($ext); |
|
| 556 | 556 | } |
| 557 | 557 | |
| 558 | 558 | return $ext; |
| 559 | 559 | } |
| 560 | 560 | |
| 561 | - /** |
|
| 562 | - * Retrieves the file name from a path, with or without extension. |
|
| 563 | - * The path to the file can be a string, or a DirectoryIterator object |
|
| 564 | - * instance. |
|
| 565 | - * |
|
| 566 | - * In case of folders, behaves like the pathinfo function: returns |
|
| 567 | - * the name of the folder. |
|
| 568 | - * |
|
| 569 | - * @param string|DirectoryIterator $pathOrDirIterator |
|
| 570 | - * @param bool $extension |
|
| 571 | - * @return string |
|
| 572 | - */ |
|
| 561 | + /** |
|
| 562 | + * Retrieves the file name from a path, with or without extension. |
|
| 563 | + * The path to the file can be a string, or a DirectoryIterator object |
|
| 564 | + * instance. |
|
| 565 | + * |
|
| 566 | + * In case of folders, behaves like the pathinfo function: returns |
|
| 567 | + * the name of the folder. |
|
| 568 | + * |
|
| 569 | + * @param string|DirectoryIterator $pathOrDirIterator |
|
| 570 | + * @param bool $extension |
|
| 571 | + * @return string |
|
| 572 | + */ |
|
| 573 | 573 | public static function getFilename($pathOrDirIterator, $extension = true) : string |
| 574 | 574 | { |
| 575 | 575 | $path = strval($pathOrDirIterator); |
| 576 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 577 | - $path = $pathOrDirIterator->getFilename(); |
|
| 578 | - } |
|
| 576 | + if($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 577 | + $path = $pathOrDirIterator->getFilename(); |
|
| 578 | + } |
|
| 579 | 579 | |
| 580 | - $path = self::normalizePath($path); |
|
| 580 | + $path = self::normalizePath($path); |
|
| 581 | 581 | |
| 582 | - if(!$extension) { |
|
| 583 | - return pathinfo($path, PATHINFO_FILENAME); |
|
| 584 | - } |
|
| 582 | + if(!$extension) { |
|
| 583 | + return pathinfo($path, PATHINFO_FILENAME); |
|
| 584 | + } |
|
| 585 | 585 | |
| 586 | - return pathinfo($path, PATHINFO_BASENAME); |
|
| 586 | + return pathinfo($path, PATHINFO_BASENAME); |
|
| 587 | 587 | } |
| 588 | 588 | |
| 589 | 589 | /** |
@@ -624,16 +624,16 @@ discard block |
||
| 624 | 624 | return $json; |
| 625 | 625 | } |
| 626 | 626 | |
| 627 | - /** |
|
| 628 | - * Corrects common formatting mistakes when users enter |
|
| 629 | - * file names, like too many spaces, dots and the like. |
|
| 630 | - * |
|
| 631 | - * NOTE: if the file name contains a path, the path is |
|
| 632 | - * stripped, leaving only the file name. |
|
| 633 | - * |
|
| 634 | - * @param string $name |
|
| 635 | - * @return string |
|
| 636 | - */ |
|
| 627 | + /** |
|
| 628 | + * Corrects common formatting mistakes when users enter |
|
| 629 | + * file names, like too many spaces, dots and the like. |
|
| 630 | + * |
|
| 631 | + * NOTE: if the file name contains a path, the path is |
|
| 632 | + * stripped, leaving only the file name. |
|
| 633 | + * |
|
| 634 | + * @param string $name |
|
| 635 | + * @return string |
|
| 636 | + */ |
|
| 637 | 637 | public static function fixFileName(string $name) : string |
| 638 | 638 | { |
| 639 | 639 | $name = trim($name); |
@@ -715,20 +715,20 @@ discard block |
||
| 715 | 715 | return self::findFiles($targetFolder, array('php'), $options); |
| 716 | 716 | } |
| 717 | 717 | |
| 718 | - /** |
|
| 719 | - * Finds files according to the specified options. |
|
| 720 | - * |
|
| 721 | - * NOTE: This method only exists for backwards compatibility. |
|
| 722 | - * Use the `createFileFinder()` method instead, which offers |
|
| 723 | - * an object oriented interface that is much easier to use. |
|
| 724 | - * |
|
| 725 | - * @param string $targetFolder |
|
| 726 | - * @param string[] $extensions |
|
| 727 | - * @param array<string,mixed> $options |
|
| 728 | - * @throws FileHelper_Exception |
|
| 729 | - * @return string[] |
|
| 730 | - * @see FileHelper::createFileFinder() |
|
| 731 | - */ |
|
| 718 | + /** |
|
| 719 | + * Finds files according to the specified options. |
|
| 720 | + * |
|
| 721 | + * NOTE: This method only exists for backwards compatibility. |
|
| 722 | + * Use the `createFileFinder()` method instead, which offers |
|
| 723 | + * an object oriented interface that is much easier to use. |
|
| 724 | + * |
|
| 725 | + * @param string $targetFolder |
|
| 726 | + * @param string[] $extensions |
|
| 727 | + * @param array<string,mixed> $options |
|
| 728 | + * @throws FileHelper_Exception |
|
| 729 | + * @return string[] |
|
| 730 | + * @see FileHelper::createFileFinder() |
|
| 731 | + */ |
|
| 732 | 732 | public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array()) : array |
| 733 | 733 | { |
| 734 | 734 | $finder = self::createFileFinder($targetFolder); |
@@ -758,14 +758,14 @@ discard block |
||
| 758 | 758 | return $finder->getAll(); |
| 759 | 759 | } |
| 760 | 760 | |
| 761 | - /** |
|
| 762 | - * Removes the extension from the specified path or file name, |
|
| 763 | - * if any, and returns the name without the extension. |
|
| 764 | - * |
|
| 765 | - * @param string $filename |
|
| 766 | - * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
|
| 767 | - * @return string |
|
| 768 | - */ |
|
| 761 | + /** |
|
| 762 | + * Removes the extension from the specified path or file name, |
|
| 763 | + * if any, and returns the name without the extension. |
|
| 764 | + * |
|
| 765 | + * @param string $filename |
|
| 766 | + * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
|
| 767 | + * @return string |
|
| 768 | + */ |
|
| 769 | 769 | public static function removeExtension(string $filename, bool $keepPath=false) : string |
| 770 | 770 | { |
| 771 | 771 | // normalize paths to allow windows style slashes even on nix servers |
@@ -833,13 +833,13 @@ discard block |
||
| 833 | 833 | return null; |
| 834 | 834 | } |
| 835 | 835 | |
| 836 | - /** |
|
| 837 | - * Retrieves a list of all UTF byte order mark character |
|
| 838 | - * sequences, as an associative array with UTF encoding => bom sequence |
|
| 839 | - * pairs. |
|
| 840 | - * |
|
| 841 | - * @return array<string,string> |
|
| 842 | - */ |
|
| 836 | + /** |
|
| 837 | + * Retrieves a list of all UTF byte order mark character |
|
| 838 | + * sequences, as an associative array with UTF encoding => bom sequence |
|
| 839 | + * pairs. |
|
| 840 | + * |
|
| 841 | + * @return array<string,string> |
|
| 842 | + */ |
|
| 843 | 843 | public static function getUTFBOMs() : array |
| 844 | 844 | { |
| 845 | 845 | if(!isset(self::$utfBoms)) { |
@@ -855,15 +855,15 @@ discard block |
||
| 855 | 855 | return self::$utfBoms; |
| 856 | 856 | } |
| 857 | 857 | |
| 858 | - /** |
|
| 859 | - * Checks whether the specified encoding is a valid |
|
| 860 | - * unicode encoding, for example "UTF16-LE" or "UTF8". |
|
| 861 | - * Also accounts for alternate way to write the, like |
|
| 862 | - * "UTF-8", and omitting little/big endian suffixes. |
|
| 863 | - * |
|
| 864 | - * @param string $encoding |
|
| 865 | - * @return boolean |
|
| 866 | - */ |
|
| 858 | + /** |
|
| 859 | + * Checks whether the specified encoding is a valid |
|
| 860 | + * unicode encoding, for example "UTF16-LE" or "UTF8". |
|
| 861 | + * Also accounts for alternate way to write the, like |
|
| 862 | + * "UTF-8", and omitting little/big endian suffixes. |
|
| 863 | + * |
|
| 864 | + * @param string $encoding |
|
| 865 | + * @return boolean |
|
| 866 | + */ |
|
| 867 | 867 | public static function isValidUnicodeEncoding(string $encoding) : bool |
| 868 | 868 | { |
| 869 | 869 | $encodings = self::getKnownUnicodeEncodings(); |
@@ -882,40 +882,40 @@ discard block |
||
| 882 | 882 | return in_array($encoding, $keep); |
| 883 | 883 | } |
| 884 | 884 | |
| 885 | - /** |
|
| 886 | - * Retrieves a list of all known unicode file encodings. |
|
| 887 | - * @return string[] |
|
| 888 | - */ |
|
| 885 | + /** |
|
| 886 | + * Retrieves a list of all known unicode file encodings. |
|
| 887 | + * @return string[] |
|
| 888 | + */ |
|
| 889 | 889 | public static function getKnownUnicodeEncodings() : array |
| 890 | 890 | { |
| 891 | 891 | return array_keys(self::getUTFBOMs()); |
| 892 | 892 | } |
| 893 | 893 | |
| 894 | - /** |
|
| 895 | - * Normalizes the slash style in a file or folder path, |
|
| 896 | - * by replacing any antislashes with forward slashes. |
|
| 897 | - * |
|
| 898 | - * @param string $path |
|
| 899 | - * @return string |
|
| 900 | - */ |
|
| 894 | + /** |
|
| 895 | + * Normalizes the slash style in a file or folder path, |
|
| 896 | + * by replacing any antislashes with forward slashes. |
|
| 897 | + * |
|
| 898 | + * @param string $path |
|
| 899 | + * @return string |
|
| 900 | + */ |
|
| 901 | 901 | public static function normalizePath(string $path) : string |
| 902 | 902 | { |
| 903 | 903 | return str_replace(array('\\', '//'), array('/', '/'), $path); |
| 904 | 904 | } |
| 905 | 905 | |
| 906 | - /** |
|
| 907 | - * Saves the specified data to a file, JSON encoded. |
|
| 908 | - * |
|
| 909 | - * @param mixed $data |
|
| 910 | - * @param string $file |
|
| 911 | - * @param bool $pretty |
|
| 912 | - * @throws FileHelper_Exception |
|
| 913 | - * |
|
| 914 | - * @see FileHelper::ERROR_JSON_ENCODE_ERROR |
|
| 915 | - * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
| 916 | - * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
| 917 | - * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
| 918 | - */ |
|
| 906 | + /** |
|
| 907 | + * Saves the specified data to a file, JSON encoded. |
|
| 908 | + * |
|
| 909 | + * @param mixed $data |
|
| 910 | + * @param string $file |
|
| 911 | + * @param bool $pretty |
|
| 912 | + * @throws FileHelper_Exception |
|
| 913 | + * |
|
| 914 | + * @see FileHelper::ERROR_JSON_ENCODE_ERROR |
|
| 915 | + * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
| 916 | + * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
| 917 | + * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
| 918 | + */ |
|
| 919 | 919 | public static function saveAsJSON($data, string $file, bool $pretty=false) : void |
| 920 | 920 | { |
| 921 | 921 | $options = null; |
@@ -939,18 +939,18 @@ discard block |
||
| 939 | 939 | self::saveFile($file, $json); |
| 940 | 940 | } |
| 941 | 941 | |
| 942 | - /** |
|
| 943 | - * Saves the specified content to the target file, creating |
|
| 944 | - * the file and the folder as necessary. |
|
| 945 | - * |
|
| 946 | - * @param string $filePath |
|
| 947 | - * @param string $content |
|
| 948 | - * @throws FileHelper_Exception |
|
| 949 | - * |
|
| 950 | - * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
| 951 | - * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
| 952 | - * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
| 953 | - */ |
|
| 942 | + /** |
|
| 943 | + * Saves the specified content to the target file, creating |
|
| 944 | + * the file and the folder as necessary. |
|
| 945 | + * |
|
| 946 | + * @param string $filePath |
|
| 947 | + * @param string $content |
|
| 948 | + * @throws FileHelper_Exception |
|
| 949 | + * |
|
| 950 | + * @see FileHelper::ERROR_SAVE_FOLDER_NOT_WRITABLE |
|
| 951 | + * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
|
| 952 | + * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
|
| 953 | + */ |
|
| 954 | 954 | public static function saveFile(string $filePath, string $content='') : void |
| 955 | 955 | { |
| 956 | 956 | $filePath = self::normalizePath($filePath); |
@@ -1134,14 +1134,14 @@ discard block |
||
| 1134 | 1134 | return $output; |
| 1135 | 1135 | } |
| 1136 | 1136 | |
| 1137 | - /** |
|
| 1138 | - * Retrieves the last modified date for the specified file or folder. |
|
| 1139 | - * |
|
| 1140 | - * Note: If the target does not exist, returns null. |
|
| 1141 | - * |
|
| 1142 | - * @param string $path |
|
| 1143 | - * @return DateTime|NULL |
|
| 1144 | - */ |
|
| 1137 | + /** |
|
| 1138 | + * Retrieves the last modified date for the specified file or folder. |
|
| 1139 | + * |
|
| 1140 | + * Note: If the target does not exist, returns null. |
|
| 1141 | + * |
|
| 1142 | + * @param string $path |
|
| 1143 | + * @return DateTime|NULL |
|
| 1144 | + */ |
|
| 1145 | 1145 | public static function getModifiedDate(string $path) : ?DateTime |
| 1146 | 1146 | { |
| 1147 | 1147 | $time = filemtime($path); |
@@ -1154,25 +1154,25 @@ discard block |
||
| 1154 | 1154 | return $date; |
| 1155 | 1155 | } |
| 1156 | 1156 | |
| 1157 | - /** |
|
| 1158 | - * Retrieves the names of all sub-folders in the specified path. |
|
| 1159 | - * |
|
| 1160 | - * Available options: |
|
| 1161 | - * |
|
| 1162 | - * - recursive: true/false |
|
| 1163 | - * Whether to search for sub-folders recursively. |
|
| 1164 | - * |
|
| 1165 | - * - absolute-paths: true/false |
|
| 1166 | - * Whether to return a list of absolute paths. |
|
| 1167 | - * |
|
| 1168 | - * @param string|DirectoryIterator $targetFolder |
|
| 1169 | - * @param array<string,mixed> $options |
|
| 1170 | - * @throws FileHelper_Exception |
|
| 1171 | - * @return string[] |
|
| 1172 | - * |
|
| 1173 | - * @see FileHelper::ERROR_FIND_SUBFOLDERS_FOLDER_DOES_NOT_EXIST |
|
| 1174 | - * @todo Move this to a separate class. |
|
| 1175 | - */ |
|
| 1157 | + /** |
|
| 1158 | + * Retrieves the names of all sub-folders in the specified path. |
|
| 1159 | + * |
|
| 1160 | + * Available options: |
|
| 1161 | + * |
|
| 1162 | + * - recursive: true/false |
|
| 1163 | + * Whether to search for sub-folders recursively. |
|
| 1164 | + * |
|
| 1165 | + * - absolute-paths: true/false |
|
| 1166 | + * Whether to return a list of absolute paths. |
|
| 1167 | + * |
|
| 1168 | + * @param string|DirectoryIterator $targetFolder |
|
| 1169 | + * @param array<string,mixed> $options |
|
| 1170 | + * @throws FileHelper_Exception |
|
| 1171 | + * @return string[] |
|
| 1172 | + * |
|
| 1173 | + * @see FileHelper::ERROR_FIND_SUBFOLDERS_FOLDER_DOES_NOT_EXIST |
|
| 1174 | + * @todo Move this to a separate class. |
|
| 1175 | + */ |
|
| 1176 | 1176 | public static function getSubfolders($targetFolder, array $options = array()) |
| 1177 | 1177 | { |
| 1178 | 1178 | if($targetFolder instanceof DirectoryIterator) { |
@@ -1237,16 +1237,16 @@ discard block |
||
| 1237 | 1237 | return $result; |
| 1238 | 1238 | } |
| 1239 | 1239 | |
| 1240 | - /** |
|
| 1241 | - * Retrieves the maximum allowed upload file size, in bytes. |
|
| 1242 | - * Takes into account the PHP ini settings <code>post_max_size</code> |
|
| 1243 | - * and <code>upload_max_filesize</code>. Since these cannot |
|
| 1244 | - * be modified at runtime, they are the hard limits for uploads. |
|
| 1245 | - * |
|
| 1246 | - * NOTE: Based on binary values, where 1KB = 1024 Bytes. |
|
| 1247 | - * |
|
| 1248 | - * @return int Will return <code>-1</code> if no limit. |
|
| 1249 | - */ |
|
| 1240 | + /** |
|
| 1241 | + * Retrieves the maximum allowed upload file size, in bytes. |
|
| 1242 | + * Takes into account the PHP ini settings <code>post_max_size</code> |
|
| 1243 | + * and <code>upload_max_filesize</code>. Since these cannot |
|
| 1244 | + * be modified at runtime, they are the hard limits for uploads. |
|
| 1245 | + * |
|
| 1246 | + * NOTE: Based on binary values, where 1KB = 1024 Bytes. |
|
| 1247 | + * |
|
| 1248 | + * @return int Will return <code>-1</code> if no limit. |
|
| 1249 | + */ |
|
| 1250 | 1250 | public static function getMaxUploadFilesize() : int |
| 1251 | 1251 | { |
| 1252 | 1252 | static $max_size = -1; |
@@ -1284,16 +1284,16 @@ discard block |
||
| 1284 | 1284 | return round($size); |
| 1285 | 1285 | } |
| 1286 | 1286 | |
| 1287 | - /** |
|
| 1288 | - * Makes a path relative using a folder depth: will reduce the |
|
| 1289 | - * length of the path so that only the amount of folders defined |
|
| 1290 | - * in the <code>$depth</code> attribute are shown below the actual |
|
| 1291 | - * folder or file in the path. |
|
| 1292 | - * |
|
| 1293 | - * @param string $path The absolute or relative path |
|
| 1294 | - * @param int $depth The folder depth to reduce the path to |
|
| 1295 | - * @return string |
|
| 1296 | - */ |
|
| 1287 | + /** |
|
| 1288 | + * Makes a path relative using a folder depth: will reduce the |
|
| 1289 | + * length of the path so that only the amount of folders defined |
|
| 1290 | + * in the <code>$depth</code> attribute are shown below the actual |
|
| 1291 | + * folder or file in the path. |
|
| 1292 | + * |
|
| 1293 | + * @param string $path The absolute or relative path |
|
| 1294 | + * @param int $depth The folder depth to reduce the path to |
|
| 1295 | + * @return string |
|
| 1296 | + */ |
|
| 1297 | 1297 | public static function relativizePathByDepth(string $path, int $depth=2) : string |
| 1298 | 1298 | { |
| 1299 | 1299 | $path = self::normalizePath($path); |
@@ -1331,23 +1331,23 @@ discard block |
||
| 1331 | 1331 | return trim(implode('/', $tokens), '/'); |
| 1332 | 1332 | } |
| 1333 | 1333 | |
| 1334 | - /** |
|
| 1335 | - * Makes the specified path relative to another path, |
|
| 1336 | - * by removing one from the other if found. Also |
|
| 1337 | - * normalizes the path to use forward slashes. |
|
| 1338 | - * |
|
| 1339 | - * Example: |
|
| 1340 | - * |
|
| 1341 | - * <pre> |
|
| 1342 | - * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder'); |
|
| 1343 | - * </pre> |
|
| 1344 | - * |
|
| 1345 | - * Result: <code>to/file.txt</code> |
|
| 1346 | - * |
|
| 1347 | - * @param string $path |
|
| 1348 | - * @param string $relativeTo |
|
| 1349 | - * @return string |
|
| 1350 | - */ |
|
| 1334 | + /** |
|
| 1335 | + * Makes the specified path relative to another path, |
|
| 1336 | + * by removing one from the other if found. Also |
|
| 1337 | + * normalizes the path to use forward slashes. |
|
| 1338 | + * |
|
| 1339 | + * Example: |
|
| 1340 | + * |
|
| 1341 | + * <pre> |
|
| 1342 | + * relativizePath('c:\some\folder\to\file.txt', 'c:\some\folder'); |
|
| 1343 | + * </pre> |
|
| 1344 | + * |
|
| 1345 | + * Result: <code>to/file.txt</code> |
|
| 1346 | + * |
|
| 1347 | + * @param string $path |
|
| 1348 | + * @param string $relativeTo |
|
| 1349 | + * @return string |
|
| 1350 | + */ |
|
| 1351 | 1351 | public static function relativizePath(string $path, string $relativeTo) : string |
| 1352 | 1352 | { |
| 1353 | 1353 | $path = self::normalizePath($path); |
@@ -1359,17 +1359,17 @@ discard block |
||
| 1359 | 1359 | return $relative; |
| 1360 | 1360 | } |
| 1361 | 1361 | |
| 1362 | - /** |
|
| 1363 | - * Checks that the target file exists, and throws an exception |
|
| 1364 | - * if it does not. |
|
| 1365 | - * |
|
| 1366 | - * @param string $path |
|
| 1367 | - * @param int|NULL $errorCode Optional custom error code |
|
| 1368 | - * @throws FileHelper_Exception |
|
| 1369 | - * @return string The real path to the file |
|
| 1370 | - * |
|
| 1371 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1372 | - */ |
|
| 1362 | + /** |
|
| 1363 | + * Checks that the target file exists, and throws an exception |
|
| 1364 | + * if it does not. |
|
| 1365 | + * |
|
| 1366 | + * @param string $path |
|
| 1367 | + * @param int|NULL $errorCode Optional custom error code |
|
| 1368 | + * @throws FileHelper_Exception |
|
| 1369 | + * @return string The real path to the file |
|
| 1370 | + * |
|
| 1371 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1372 | + */ |
|
| 1373 | 1373 | public static function requireFileExists(string $path, ?int $errorCode=null) : string |
| 1374 | 1374 | { |
| 1375 | 1375 | $result = realpath($path); |
@@ -1413,18 +1413,18 @@ discard block |
||
| 1413 | 1413 | ); |
| 1414 | 1414 | } |
| 1415 | 1415 | |
| 1416 | - /** |
|
| 1417 | - * Reads a specific line number from the target file and returns its |
|
| 1418 | - * contents, if the file has such a line. Does so with little memory |
|
| 1419 | - * usage, as the file is not read entirely into memory. |
|
| 1420 | - * |
|
| 1421 | - * @param string $path |
|
| 1422 | - * @param int $lineNumber Note: 1-based; the first line is number 1. |
|
| 1423 | - * @return string|NULL Will return null if the requested line does not exist. |
|
| 1424 | - * @throws FileHelper_Exception |
|
| 1425 | - * |
|
| 1426 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1427 | - */ |
|
| 1416 | + /** |
|
| 1417 | + * Reads a specific line number from the target file and returns its |
|
| 1418 | + * contents, if the file has such a line. Does so with little memory |
|
| 1419 | + * usage, as the file is not read entirely into memory. |
|
| 1420 | + * |
|
| 1421 | + * @param string $path |
|
| 1422 | + * @param int $lineNumber Note: 1-based; the first line is number 1. |
|
| 1423 | + * @return string|NULL Will return null if the requested line does not exist. |
|
| 1424 | + * @throws FileHelper_Exception |
|
| 1425 | + * |
|
| 1426 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1427 | + */ |
|
| 1428 | 1428 | public static function getLineFromFile(string $path, int $lineNumber) : ?string |
| 1429 | 1429 | { |
| 1430 | 1430 | self::requireFileExists($path); |
@@ -1440,19 +1440,19 @@ discard block |
||
| 1440 | 1440 | $file->seek($targetLine); |
| 1441 | 1441 | |
| 1442 | 1442 | if($file->key() !== $targetLine) { |
| 1443 | - return null; |
|
| 1443 | + return null; |
|
| 1444 | 1444 | } |
| 1445 | 1445 | |
| 1446 | 1446 | return $file->current(); |
| 1447 | 1447 | } |
| 1448 | 1448 | |
| 1449 | - /** |
|
| 1450 | - * Retrieves the total amount of lines in the file, without |
|
| 1451 | - * reading the whole file into memory. |
|
| 1452 | - * |
|
| 1453 | - * @param string $path |
|
| 1454 | - * @return int |
|
| 1455 | - */ |
|
| 1449 | + /** |
|
| 1450 | + * Retrieves the total amount of lines in the file, without |
|
| 1451 | + * reading the whole file into memory. |
|
| 1452 | + * |
|
| 1453 | + * @param string $path |
|
| 1454 | + * @return int |
|
| 1455 | + */ |
|
| 1456 | 1456 | public static function countFileLines(string $path) : int |
| 1457 | 1457 | { |
| 1458 | 1458 | self::requireFileExists($path); |
@@ -1482,26 +1482,26 @@ discard block |
||
| 1482 | 1482 | return $number+1; |
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | - /** |
|
| 1486 | - * Parses the target file to detect any PHP classes contained |
|
| 1487 | - * within, and retrieve information on them. Does not use the |
|
| 1488 | - * PHP reflection API. |
|
| 1489 | - * |
|
| 1490 | - * @param string $filePath |
|
| 1491 | - * @return FileHelper_PHPClassInfo |
|
| 1492 | - */ |
|
| 1485 | + /** |
|
| 1486 | + * Parses the target file to detect any PHP classes contained |
|
| 1487 | + * within, and retrieve information on them. Does not use the |
|
| 1488 | + * PHP reflection API. |
|
| 1489 | + * |
|
| 1490 | + * @param string $filePath |
|
| 1491 | + * @return FileHelper_PHPClassInfo |
|
| 1492 | + */ |
|
| 1493 | 1493 | public static function findPHPClasses(string $filePath) : FileHelper_PHPClassInfo |
| 1494 | 1494 | { |
| 1495 | 1495 | return new FileHelper_PHPClassInfo($filePath); |
| 1496 | 1496 | } |
| 1497 | 1497 | |
| 1498 | - /** |
|
| 1499 | - * Detects the end of line style used in the target file, if any. |
|
| 1500 | - * Can be used with large files, because it only reads part of it. |
|
| 1501 | - * |
|
| 1502 | - * @param string $filePath The path to the file. |
|
| 1503 | - * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found. |
|
| 1504 | - */ |
|
| 1498 | + /** |
|
| 1499 | + * Detects the end of line style used in the target file, if any. |
|
| 1500 | + * Can be used with large files, because it only reads part of it. |
|
| 1501 | + * |
|
| 1502 | + * @param string $filePath The path to the file. |
|
| 1503 | + * @return NULL|ConvertHelper_EOL The end of line character information, or NULL if none is found. |
|
| 1504 | + */ |
|
| 1505 | 1505 | public static function detectEOLCharacter(string $filePath) : ?ConvertHelper_EOL |
| 1506 | 1506 | { |
| 1507 | 1507 | // 20 lines is enough to get a good picture of the newline style in the file. |
@@ -1579,16 +1579,16 @@ discard block |
||
| 1579 | 1579 | return $result; |
| 1580 | 1580 | } |
| 1581 | 1581 | |
| 1582 | - /** |
|
| 1583 | - * Reads all content from a file. |
|
| 1584 | - * |
|
| 1585 | - * @param string $filePath |
|
| 1586 | - * @throws FileHelper_Exception |
|
| 1587 | - * @return string |
|
| 1588 | - * |
|
| 1589 | - * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1590 | - * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
|
| 1591 | - */ |
|
| 1582 | + /** |
|
| 1583 | + * Reads all content from a file. |
|
| 1584 | + * |
|
| 1585 | + * @param string $filePath |
|
| 1586 | + * @throws FileHelper_Exception |
|
| 1587 | + * @return string |
|
| 1588 | + * |
|
| 1589 | + * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
|
| 1590 | + * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
|
| 1591 | + */ |
|
| 1592 | 1592 | public static function readContents(string $filePath) : string |
| 1593 | 1593 | { |
| 1594 | 1594 | self::requireFileExists($filePath); |
@@ -1609,18 +1609,18 @@ discard block |
||
| 1609 | 1609 | ); |
| 1610 | 1610 | } |
| 1611 | 1611 | |
| 1612 | - /** |
|
| 1613 | - * Ensures that the target path exists on disk, and is a folder. |
|
| 1614 | - * |
|
| 1615 | - * @param string $path |
|
| 1616 | - * @return string The real path, with normalized slashes. |
|
| 1617 | - * @throws FileHelper_Exception |
|
| 1618 | - * |
|
| 1619 | - * @see FileHelper::normalizePath() |
|
| 1620 | - * |
|
| 1621 | - * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST |
|
| 1622 | - * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER |
|
| 1623 | - */ |
|
| 1612 | + /** |
|
| 1613 | + * Ensures that the target path exists on disk, and is a folder. |
|
| 1614 | + * |
|
| 1615 | + * @param string $path |
|
| 1616 | + * @return string The real path, with normalized slashes. |
|
| 1617 | + * @throws FileHelper_Exception |
|
| 1618 | + * |
|
| 1619 | + * @see FileHelper::normalizePath() |
|
| 1620 | + * |
|
| 1621 | + * @see FileHelper::ERROR_FOLDER_DOES_NOT_EXIST |
|
| 1622 | + * @see FileHelper::ERROR_PATH_IS_NOT_A_FOLDER |
|
| 1623 | + */ |
|
| 1624 | 1624 | public static function requireFolderExists(string $path) : string |
| 1625 | 1625 | { |
| 1626 | 1626 | $actual = realpath($path); |
@@ -22,9 +22,9 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class RequestHelper_Exception extends BaseException |
| 24 | 24 | { |
| 25 | - /** |
|
| 26 | - * @var RequestHelper_Response|NULL |
|
| 27 | - */ |
|
| 25 | + /** |
|
| 26 | + * @var RequestHelper_Response|NULL |
|
| 27 | + */ |
|
| 28 | 28 | protected $response = null; |
| 29 | 29 | |
| 30 | 30 | /** |
@@ -37,11 +37,11 @@ discard block |
||
| 37 | 37 | return $this; |
| 38 | 38 | } |
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Retrieves the related response instance, if available. |
|
| 42 | - * |
|
| 43 | - * @return RequestHelper_Response|NULL |
|
| 44 | - */ |
|
| 40 | + /** |
|
| 41 | + * Retrieves the related response instance, if available. |
|
| 42 | + * |
|
| 43 | + * @return RequestHelper_Response|NULL |
|
| 44 | + */ |
|
| 45 | 45 | public function getResponse() : ?RequestHelper_Response |
| 46 | 46 | { |
| 47 | 47 | return $this->response; |
@@ -40,19 +40,19 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | class NumberInfo |
| 42 | 42 | { |
| 43 | - /** |
|
| 44 | - * @var string|int|float|null |
|
| 45 | - */ |
|
| 43 | + /** |
|
| 44 | + * @var string|int|float|null |
|
| 45 | + */ |
|
| 46 | 46 | protected $rawValue; |
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * @var array<string,mixed> |
|
| 50 | - */ |
|
| 48 | + /** |
|
| 49 | + * @var array<string,mixed> |
|
| 50 | + */ |
|
| 51 | 51 | protected $info; |
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * @var bool |
|
| 55 | - */ |
|
| 53 | + /** |
|
| 54 | + * @var bool |
|
| 55 | + */ |
|
| 56 | 56 | protected $empty = false; |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * Units and whether they allow decimal values. |
| 65 | - * @var array<string,bool> |
|
| 66 | - */ |
|
| 65 | + * @var array<string,bool> |
|
| 66 | + */ |
|
| 67 | 67 | protected $knownUnits = array( |
| 68 | 68 | '%' => true, |
| 69 | 69 | 'rem' => true, |
@@ -141,21 +141,21 @@ discard block |
||
| 141 | 141 | return $this; |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - /** |
|
| 145 | - * Retrieves the raw, internal information array resulting |
|
| 146 | - * from the parsing of the number. |
|
| 147 | - * |
|
| 148 | - * @return array<string,mixed> |
|
| 149 | - */ |
|
| 144 | + /** |
|
| 145 | + * Retrieves the raw, internal information array resulting |
|
| 146 | + * from the parsing of the number. |
|
| 147 | + * |
|
| 148 | + * @return array<string,mixed> |
|
| 149 | + */ |
|
| 150 | 150 | public function getRawInfo() : array |
| 151 | 151 | { |
| 152 | 152 | return $this->info; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | - /** |
|
| 156 | - * Whether the number was empty (null or empty string). |
|
| 157 | - * @return boolean |
|
| 158 | - */ |
|
| 155 | + /** |
|
| 156 | + * Whether the number was empty (null or empty string). |
|
| 157 | + * @return boolean |
|
| 158 | + */ |
|
| 159 | 159 | public function isEmpty() : bool |
| 160 | 160 | { |
| 161 | 161 | return $this->empty; |
@@ -729,12 +729,12 @@ discard block |
||
| 729 | 729 | return $cache[$key]; |
| 730 | 730 | } |
| 731 | 731 | |
| 732 | - /** |
|
| 733 | - * Parses a string number notation with units included, e.g. 14px, 50%... |
|
| 734 | - * |
|
| 735 | - * @param string $test |
|
| 736 | - * @return array<string,mixed> |
|
| 737 | - */ |
|
| 732 | + /** |
|
| 733 | + * Parses a string number notation with units included, e.g. 14px, 50%... |
|
| 734 | + * |
|
| 735 | + * @param string $test |
|
| 736 | + * @return array<string,mixed> |
|
| 737 | + */ |
|
| 738 | 738 | private function parseStringValue(string $test) : array |
| 739 | 739 | { |
| 740 | 740 | $number = null; |
@@ -785,13 +785,13 @@ discard block |
||
| 785 | 785 | return $this->filterInfo($result); |
| 786 | 786 | } |
| 787 | 787 | |
| 788 | - /** |
|
| 789 | - * Attempts to determine what kind of units are specified |
|
| 790 | - * in the string. Returns NULL if none could be matched. |
|
| 791 | - * |
|
| 792 | - * @param string $value |
|
| 793 | - * @return array<string,mixed>|NULL |
|
| 794 | - */ |
|
| 788 | + /** |
|
| 789 | + * Attempts to determine what kind of units are specified |
|
| 790 | + * in the string. Returns NULL if none could be matched. |
|
| 791 | + * |
|
| 792 | + * @param string $value |
|
| 793 | + * @return array<string,mixed>|NULL |
|
| 794 | + */ |
|
| 795 | 795 | private function findUnits(string $value) : ?array |
| 796 | 796 | { |
| 797 | 797 | $vlength = strlen($value); |
@@ -819,12 +819,12 @@ discard block |
||
| 819 | 819 | return null; |
| 820 | 820 | } |
| 821 | 821 | |
| 822 | - /** |
|
| 823 | - * Creates the cache key for the specified value. |
|
| 824 | - * |
|
| 825 | - * @param mixed $value |
|
| 826 | - * @return string |
|
| 827 | - */ |
|
| 822 | + /** |
|
| 823 | + * Creates the cache key for the specified value. |
|
| 824 | + * |
|
| 825 | + * @param mixed $value |
|
| 826 | + * @return string |
|
| 827 | + */ |
|
| 828 | 828 | private function createValueKey($value) : string |
| 829 | 829 | { |
| 830 | 830 | if(!is_string($value) && !is_numeric($value)) |
@@ -835,59 +835,59 @@ discard block |
||
| 835 | 835 | return (string)$value; |
| 836 | 836 | } |
| 837 | 837 | |
| 838 | - /** |
|
| 839 | - * Called if explicitly enabled: allows filtering the |
|
| 840 | - * number after the detection process has completed. |
|
| 841 | - * |
|
| 842 | - * @param string|NULL $number The adjusted number |
|
| 843 | - * @param string $originalString The original value before it was parsed |
|
| 844 | - * @return string|null |
|
| 845 | - */ |
|
| 838 | + /** |
|
| 839 | + * Called if explicitly enabled: allows filtering the |
|
| 840 | + * number after the detection process has completed. |
|
| 841 | + * |
|
| 842 | + * @param string|NULL $number The adjusted number |
|
| 843 | + * @param string $originalString The original value before it was parsed |
|
| 844 | + * @return string|null |
|
| 845 | + */ |
|
| 846 | 846 | protected function postProcess(?string $number, /** @scrutinizer ignore-unused */ string $originalString) |
| 847 | 847 | { |
| 848 | 848 | return $number; |
| 849 | 849 | } |
| 850 | 850 | |
| 851 | - /** |
|
| 852 | - * Filters the value before it is parsed, but only if it is a string. |
|
| 853 | - * |
|
| 854 | - * NOTE: This may be overwritten in a subclass, to allow custom filtering |
|
| 855 | - * the values. An example of a use case would be a preprocessor for |
|
| 856 | - * variables in a templating system. |
|
| 857 | - * |
|
| 858 | - * @param string $trimmedString The trimmed value. |
|
| 859 | - * @param array<string,mixed> $cache The internal values cache array. |
|
| 860 | - * @param string $originalValue The original value that the NumberInfo was created for. |
|
| 861 | - * @return string |
|
| 862 | - * |
|
| 863 | - * @see NumberInfo::enablePostProcess() |
|
| 864 | - */ |
|
| 851 | + /** |
|
| 852 | + * Filters the value before it is parsed, but only if it is a string. |
|
| 853 | + * |
|
| 854 | + * NOTE: This may be overwritten in a subclass, to allow custom filtering |
|
| 855 | + * the values. An example of a use case would be a preprocessor for |
|
| 856 | + * variables in a templating system. |
|
| 857 | + * |
|
| 858 | + * @param string $trimmedString The trimmed value. |
|
| 859 | + * @param array<string,mixed> $cache The internal values cache array. |
|
| 860 | + * @param string $originalValue The original value that the NumberInfo was created for. |
|
| 861 | + * @return string |
|
| 862 | + * |
|
| 863 | + * @see NumberInfo::enablePostProcess() |
|
| 864 | + */ |
|
| 865 | 865 | protected function preProcess(string $trimmedString, /** @scrutinizer ignore-unused */ array &$cache, /** @scrutinizer ignore-unused */ string $originalValue) : string |
| 866 | 866 | { |
| 867 | 867 | return str_replace(',', '.', $trimmedString); |
| 868 | 868 | } |
| 869 | 869 | |
| 870 | - /** |
|
| 871 | - * Enables the post-processing so the postProcess method gets called. |
|
| 872 | - * This should be called in the {@link NumberInfo::preProcess()} |
|
| 873 | - * method as needed. |
|
| 874 | - * |
|
| 875 | - * @return $this |
|
| 876 | - * @see NumberInfo::postProcess() |
|
| 877 | - */ |
|
| 870 | + /** |
|
| 871 | + * Enables the post-processing so the postProcess method gets called. |
|
| 872 | + * This should be called in the {@link NumberInfo::preProcess()} |
|
| 873 | + * method as needed. |
|
| 874 | + * |
|
| 875 | + * @return $this |
|
| 876 | + * @see NumberInfo::postProcess() |
|
| 877 | + */ |
|
| 878 | 878 | protected function enablePostProcess() : NumberInfo |
| 879 | 879 | { |
| 880 | 880 | $this->postProcess = true; |
| 881 | 881 | return $this; |
| 882 | 882 | } |
| 883 | 883 | |
| 884 | - /** |
|
| 885 | - * Filters the number info array to adjust the units |
|
| 886 | - * and number according to the required rules. |
|
| 887 | - * |
|
| 888 | - * @param array<string,mixed> $info |
|
| 889 | - * @return array<string,mixed> |
|
| 890 | - */ |
|
| 884 | + /** |
|
| 885 | + * Filters the number info array to adjust the units |
|
| 886 | + * and number according to the required rules. |
|
| 887 | + * |
|
| 888 | + * @param array<string,mixed> $info |
|
| 889 | + * @return array<string,mixed> |
|
| 890 | + */ |
|
| 891 | 891 | protected function filterInfo(array $info) : array |
| 892 | 892 | { |
| 893 | 893 | $useUnits = 'px'; |
@@ -37,23 +37,23 @@ discard block |
||
| 37 | 37 | const OPTION_PATHMODE = 'pathmode'; |
| 38 | 38 | |
| 39 | 39 | /** |
| 40 | - * @var string |
|
| 41 | - */ |
|
| 40 | + * @var string |
|
| 41 | + */ |
|
| 42 | 42 | protected $path; |
| 43 | 43 | |
| 44 | - /** |
|
| 45 | - * @var string[] |
|
| 46 | - */ |
|
| 44 | + /** |
|
| 45 | + * @var string[] |
|
| 46 | + */ |
|
| 47 | 47 | protected $found; |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * The path must exist when the class is instantiated: its |
|
| 51 | - * real path will be determined to work with. |
|
| 52 | - * |
|
| 53 | - * @param string $path The absolute path to the target folder. |
|
| 54 | - * @throws FileHelper_Exception |
|
| 55 | - * @see FileHelper_FileFinder::ERROR_PATH_DOES_NOT_EXIST |
|
| 56 | - */ |
|
| 49 | + /** |
|
| 50 | + * The path must exist when the class is instantiated: its |
|
| 51 | + * real path will be determined to work with. |
|
| 52 | + * |
|
| 53 | + * @param string $path The absolute path to the target folder. |
|
| 54 | + * @throws FileHelper_Exception |
|
| 55 | + * @see FileHelper_FileFinder::ERROR_PATH_DOES_NOT_EXIST |
|
| 56 | + */ |
|
| 57 | 57 | public function __construct(string $path) |
| 58 | 58 | { |
| 59 | 59 | $real = realpath($path); |
@@ -85,66 +85,66 @@ discard block |
||
| 85 | 85 | ); |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | - /** |
|
| 89 | - * Enables extension stripping, to return file names without extension. |
|
| 90 | - * |
|
| 91 | - * @return FileHelper_FileFinder |
|
| 92 | - */ |
|
| 88 | + /** |
|
| 89 | + * Enables extension stripping, to return file names without extension. |
|
| 90 | + * |
|
| 91 | + * @return FileHelper_FileFinder |
|
| 92 | + */ |
|
| 93 | 93 | public function stripExtensions() : FileHelper_FileFinder |
| 94 | 94 | { |
| 95 | 95 | return $this->setOption('strip-extensions', true); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | - /** |
|
| 99 | - * Enables recursing into subfolders. |
|
| 100 | - * |
|
| 101 | - * @return FileHelper_FileFinder |
|
| 102 | - */ |
|
| 98 | + /** |
|
| 99 | + * Enables recursing into subfolders. |
|
| 100 | + * |
|
| 101 | + * @return FileHelper_FileFinder |
|
| 102 | + */ |
|
| 103 | 103 | public function makeRecursive() : FileHelper_FileFinder |
| 104 | 104 | { |
| 105 | 105 | return $this->setOption('recursive', true); |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - /** |
|
| 109 | - * Retrieves all extensions that were added to |
|
| 110 | - * the include list. |
|
| 111 | - * |
|
| 112 | - * @return string[] |
|
| 113 | - */ |
|
| 108 | + /** |
|
| 109 | + * Retrieves all extensions that were added to |
|
| 110 | + * the include list. |
|
| 111 | + * |
|
| 112 | + * @return string[] |
|
| 113 | + */ |
|
| 114 | 114 | public function getIncludeExtensions() : array |
| 115 | 115 | { |
| 116 | 116 | return $this->getArrayOption(self::OPTION_INCLUDE_EXTENSIONS); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - /** |
|
| 120 | - * Includes a single extension in the file search: only |
|
| 121 | - * files with this extension will be used in the results. |
|
| 122 | - * |
|
| 123 | - * NOTE: Included extensions take precedence before excluded |
|
| 124 | - * extensions. If any excluded extensions are specified, they |
|
| 125 | - * will be ignored. |
|
| 126 | - * |
|
| 127 | - * @param string $extension Extension name, without dot (`php` for example). |
|
| 128 | - * @return FileHelper_FileFinder |
|
| 129 | - * @see FileHelper_FileFinder::includeExtensions() |
|
| 130 | - */ |
|
| 119 | + /** |
|
| 120 | + * Includes a single extension in the file search: only |
|
| 121 | + * files with this extension will be used in the results. |
|
| 122 | + * |
|
| 123 | + * NOTE: Included extensions take precedence before excluded |
|
| 124 | + * extensions. If any excluded extensions are specified, they |
|
| 125 | + * will be ignored. |
|
| 126 | + * |
|
| 127 | + * @param string $extension Extension name, without dot (`php` for example). |
|
| 128 | + * @return FileHelper_FileFinder |
|
| 129 | + * @see FileHelper_FileFinder::includeExtensions() |
|
| 130 | + */ |
|
| 131 | 131 | public function includeExtension(string $extension) : FileHelper_FileFinder |
| 132 | 132 | { |
| 133 | 133 | return $this->includeExtensions(array($extension)); |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - /** |
|
| 137 | - * Includes several extensions in the file search: only |
|
| 138 | - * files with these extensions wil be used in the results. |
|
| 139 | - * |
|
| 140 | - * NOTE: Included extensions take precedence before excluded |
|
| 141 | - * extensions. If any excluded extensions are specified, they |
|
| 142 | - * will be ignored. |
|
| 143 | - * |
|
| 144 | - * @param string[] $extensions Extension names, without dot (`php` for example). |
|
| 145 | - * @return FileHelper_FileFinder |
|
| 146 | - * @see FileHelper_FileFinder::includeExtension() |
|
| 147 | - */ |
|
| 136 | + /** |
|
| 137 | + * Includes several extensions in the file search: only |
|
| 138 | + * files with these extensions wil be used in the results. |
|
| 139 | + * |
|
| 140 | + * NOTE: Included extensions take precedence before excluded |
|
| 141 | + * extensions. If any excluded extensions are specified, they |
|
| 142 | + * will be ignored. |
|
| 143 | + * |
|
| 144 | + * @param string[] $extensions Extension names, without dot (`php` for example). |
|
| 145 | + * @return FileHelper_FileFinder |
|
| 146 | + * @see FileHelper_FileFinder::includeExtension() |
|
| 147 | + */ |
|
| 148 | 148 | public function includeExtensions(array $extensions) : FileHelper_FileFinder |
| 149 | 149 | { |
| 150 | 150 | $items = $this->getIncludeExtensions(); |
@@ -155,37 +155,37 @@ discard block |
||
| 155 | 155 | return $this; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | - /** |
|
| 159 | - * Retrieves a list of all extensions currently set as |
|
| 160 | - * excluded from the search. |
|
| 161 | - * |
|
| 162 | - * @return string[] |
|
| 163 | - */ |
|
| 158 | + /** |
|
| 159 | + * Retrieves a list of all extensions currently set as |
|
| 160 | + * excluded from the search. |
|
| 161 | + * |
|
| 162 | + * @return string[] |
|
| 163 | + */ |
|
| 164 | 164 | public function getExcludeExtensions() : array |
| 165 | 165 | { |
| 166 | 166 | return $this->getArrayOption(self::OPTION_EXCLUDE_EXTENSIONS); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - /** |
|
| 170 | - * Excludes a single extension from the search. |
|
| 171 | - * |
|
| 172 | - * @param string $extension Extension name, without dot (`php` for example). |
|
| 173 | - * @return FileHelper_FileFinder |
|
| 174 | - * @see FileHelper_FileFinder::excludeExtensions() |
|
| 175 | - */ |
|
| 169 | + /** |
|
| 170 | + * Excludes a single extension from the search. |
|
| 171 | + * |
|
| 172 | + * @param string $extension Extension name, without dot (`php` for example). |
|
| 173 | + * @return FileHelper_FileFinder |
|
| 174 | + * @see FileHelper_FileFinder::excludeExtensions() |
|
| 175 | + */ |
|
| 176 | 176 | public function excludeExtension(string $extension) : FileHelper_FileFinder |
| 177 | 177 | { |
| 178 | 178 | return $this->excludeExtensions(array($extension)); |
| 179 | 179 | } |
| 180 | 180 | |
| 181 | - /** |
|
| 182 | - * Add several extensions to the list of extensions to |
|
| 183 | - * exclude from the file search. |
|
| 184 | - * |
|
| 185 | - * @param string[] $extensions Extension names, without dot (`php` for example). |
|
| 186 | - * @return FileHelper_FileFinder |
|
| 187 | - * @see FileHelper_FileFinder::excludeExtension() |
|
| 188 | - */ |
|
| 181 | + /** |
|
| 182 | + * Add several extensions to the list of extensions to |
|
| 183 | + * exclude from the file search. |
|
| 184 | + * |
|
| 185 | + * @param string[] $extensions Extension names, without dot (`php` for example). |
|
| 186 | + * @return FileHelper_FileFinder |
|
| 187 | + * @see FileHelper_FileFinder::excludeExtension() |
|
| 188 | + */ |
|
| 189 | 189 | public function excludeExtensions(array $extensions) : FileHelper_FileFinder |
| 190 | 190 | { |
| 191 | 191 | $items = $this->getExcludeExtensions(); |
@@ -196,52 +196,52 @@ discard block |
||
| 196 | 196 | return $this; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - /** |
|
| 200 | - * In this mode, the entire path to the file will be stripped, |
|
| 201 | - * leaving only the file name in the files list. |
|
| 202 | - * |
|
| 203 | - * @return FileHelper_FileFinder |
|
| 204 | - */ |
|
| 199 | + /** |
|
| 200 | + * In this mode, the entire path to the file will be stripped, |
|
| 201 | + * leaving only the file name in the files list. |
|
| 202 | + * |
|
| 203 | + * @return FileHelper_FileFinder |
|
| 204 | + */ |
|
| 205 | 205 | public function setPathmodeStrip() : FileHelper_FileFinder |
| 206 | 206 | { |
| 207 | 207 | return $this->setPathmode(self::PATH_MODE_STRIP); |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - /** |
|
| 211 | - * In this mode, only the path relative to the source folder |
|
| 212 | - * will be included in the files list. |
|
| 213 | - * |
|
| 214 | - * @return FileHelper_FileFinder |
|
| 215 | - */ |
|
| 210 | + /** |
|
| 211 | + * In this mode, only the path relative to the source folder |
|
| 212 | + * will be included in the files list. |
|
| 213 | + * |
|
| 214 | + * @return FileHelper_FileFinder |
|
| 215 | + */ |
|
| 216 | 216 | public function setPathmodeRelative() : FileHelper_FileFinder |
| 217 | 217 | { |
| 218 | 218 | return $this->setPathmode(self::PATH_MODE_RELATIVE); |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - /** |
|
| 222 | - * In this mode, the full, absolute paths to the files will |
|
| 223 | - * be included in the files list. |
|
| 224 | - * |
|
| 225 | - * @return FileHelper_FileFinder |
|
| 226 | - */ |
|
| 221 | + /** |
|
| 222 | + * In this mode, the full, absolute paths to the files will |
|
| 223 | + * be included in the files list. |
|
| 224 | + * |
|
| 225 | + * @return FileHelper_FileFinder |
|
| 226 | + */ |
|
| 227 | 227 | public function setPathmodeAbsolute() : FileHelper_FileFinder |
| 228 | 228 | { |
| 229 | 229 | return $this->setPathmode(self::PATH_MODE_ABSOLUTE); |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - /** |
|
| 233 | - * This sets a character or string to replace the slashes |
|
| 234 | - * in the paths with. |
|
| 235 | - * |
|
| 236 | - * This is used for example in the `getPHPClassNames()` |
|
| 237 | - * method, to return files from subfolders as class names |
|
| 238 | - * using the "_" character: |
|
| 239 | - * |
|
| 240 | - * Subfolder/To/File.php => Subfolder_To_File.php |
|
| 241 | - * |
|
| 242 | - * @param string $character |
|
| 243 | - * @return FileHelper_FileFinder |
|
| 244 | - */ |
|
| 232 | + /** |
|
| 233 | + * This sets a character or string to replace the slashes |
|
| 234 | + * in the paths with. |
|
| 235 | + * |
|
| 236 | + * This is used for example in the `getPHPClassNames()` |
|
| 237 | + * method, to return files from subfolders as class names |
|
| 238 | + * using the "_" character: |
|
| 239 | + * |
|
| 240 | + * Subfolder/To/File.php => Subfolder_To_File.php |
|
| 241 | + * |
|
| 242 | + * @param string $character |
|
| 243 | + * @return FileHelper_FileFinder |
|
| 244 | + */ |
|
| 245 | 245 | public function setSlashReplacement(string $character) : FileHelper_FileFinder |
| 246 | 246 | { |
| 247 | 247 | return $this->setOption('slash-replacement', $character); |
@@ -264,12 +264,12 @@ discard block |
||
| 264 | 264 | return $this->setOption(self::OPTION_PATHMODE, $mode); |
| 265 | 265 | } |
| 266 | 266 | |
| 267 | - /** |
|
| 268 | - * Retrieves a list of all matching file names/paths, |
|
| 269 | - * depending on the selected options. |
|
| 270 | - * |
|
| 271 | - * @return string[] |
|
| 272 | - */ |
|
| 267 | + /** |
|
| 268 | + * Retrieves a list of all matching file names/paths, |
|
| 269 | + * depending on the selected options. |
|
| 270 | + * |
|
| 271 | + * @return string[] |
|
| 272 | + */ |
|
| 273 | 273 | public function getAll() : array |
| 274 | 274 | { |
| 275 | 275 | $this->find($this->path, true); |
@@ -277,24 +277,24 @@ discard block |
||
| 277 | 277 | return $this->found; |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - /** |
|
| 281 | - * Retrieves only PHP files. Can be combined with other |
|
| 282 | - * options like enabling recursion into subfolders. |
|
| 283 | - * |
|
| 284 | - * @return string[] |
|
| 285 | - */ |
|
| 280 | + /** |
|
| 281 | + * Retrieves only PHP files. Can be combined with other |
|
| 282 | + * options like enabling recursion into subfolders. |
|
| 283 | + * |
|
| 284 | + * @return string[] |
|
| 285 | + */ |
|
| 286 | 286 | public function getPHPFiles() : array |
| 287 | 287 | { |
| 288 | 288 | $this->includeExtensions(array('php')); |
| 289 | 289 | return $this->getAll(); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | - /** |
|
| 293 | - * Generates PHP class names from file paths: it replaces |
|
| 294 | - * slashes with underscores, and removes file extensions. |
|
| 295 | - * |
|
| 296 | - * @return string[] An array of PHP file names without extension. |
|
| 297 | - */ |
|
| 292 | + /** |
|
| 293 | + * Generates PHP class names from file paths: it replaces |
|
| 294 | + * slashes with underscores, and removes file extensions. |
|
| 295 | + * |
|
| 296 | + * @return string[] An array of PHP file names without extension. |
|
| 297 | + */ |
|
| 298 | 298 | public function getPHPClassNames() : array |
| 299 | 299 | { |
| 300 | 300 | $this->includeExtensions(array('php')); |
@@ -365,13 +365,13 @@ discard block |
||
| 365 | 365 | return $path; |
| 366 | 366 | } |
| 367 | 367 | |
| 368 | - /** |
|
| 369 | - * Checks whether the specified extension is allowed |
|
| 370 | - * with the current settings. |
|
| 371 | - * |
|
| 372 | - * @param string $extension |
|
| 373 | - * @return bool |
|
| 374 | - */ |
|
| 368 | + /** |
|
| 369 | + * Checks whether the specified extension is allowed |
|
| 370 | + * with the current settings. |
|
| 371 | + * |
|
| 372 | + * @param string $extension |
|
| 373 | + * @return bool |
|
| 374 | + */ |
|
| 375 | 375 | protected function filterExclusion(string $extension) : bool |
| 376 | 376 | { |
| 377 | 377 | $include = $this->getOption(self::OPTION_INCLUDE_EXTENSIONS); |
@@ -393,12 +393,12 @@ discard block |
||
| 393 | 393 | return true; |
| 394 | 394 | } |
| 395 | 395 | |
| 396 | - /** |
|
| 397 | - * Adjusts the path according to the selected path mode. |
|
| 398 | - * |
|
| 399 | - * @param string $path |
|
| 400 | - * @return string |
|
| 401 | - */ |
|
| 396 | + /** |
|
| 397 | + * Adjusts the path according to the selected path mode. |
|
| 398 | + * |
|
| 399 | + * @param string $path |
|
| 400 | + * @return string |
|
| 401 | + */ |
|
| 402 | 402 | protected function filterPath(string $path) : string |
| 403 | 403 | { |
| 404 | 404 | switch($this->getStringOption(self::OPTION_PATHMODE)) |
@@ -22,51 +22,51 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | class FileHelper_PHPClassInfo_Class |
| 24 | 24 | { |
| 25 | - /** |
|
| 26 | - * @var FileHelper_PHPClassInfo |
|
| 27 | - */ |
|
| 25 | + /** |
|
| 26 | + * @var FileHelper_PHPClassInfo |
|
| 27 | + */ |
|
| 28 | 28 | protected $info; |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * @var bool |
|
| 32 | - */ |
|
| 30 | + /** |
|
| 31 | + * @var bool |
|
| 32 | + */ |
|
| 33 | 33 | protected $abstract = false; |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * @var bool |
|
| 37 | - */ |
|
| 35 | + /** |
|
| 36 | + * @var bool |
|
| 37 | + */ |
|
| 38 | 38 | protected $final = false; |
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * @var string |
|
| 42 | - */ |
|
| 40 | + /** |
|
| 41 | + * @var string |
|
| 42 | + */ |
|
| 43 | 43 | protected $extends = ''; |
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * @var string[] |
|
| 47 | - */ |
|
| 45 | + /** |
|
| 46 | + * @var string[] |
|
| 47 | + */ |
|
| 48 | 48 | protected $implements = array(); |
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * @var string |
|
| 52 | - */ |
|
| 50 | + /** |
|
| 51 | + * @var string |
|
| 52 | + */ |
|
| 53 | 53 | protected $name; |
| 54 | 54 | |
| 55 | - /** |
|
| 56 | - * @var string |
|
| 57 | - */ |
|
| 55 | + /** |
|
| 56 | + * @var string |
|
| 57 | + */ |
|
| 58 | 58 | protected $declaration; |
| 59 | 59 | |
| 60 | - /** |
|
| 61 | - * @var string |
|
| 62 | - */ |
|
| 60 | + /** |
|
| 61 | + * @var string |
|
| 62 | + */ |
|
| 63 | 63 | protected $keyword; |
| 64 | 64 | |
| 65 | - /** |
|
| 66 | - * @param FileHelper_PHPClassInfo $info The class info instance. |
|
| 67 | - * @param string $declaration The full class declaration, e.g. "class SomeName extends SomeOtherClass". |
|
| 68 | - * @param string $keyword The class keyword, if any, i.e. "abstract" or "final". |
|
| 69 | - */ |
|
| 65 | + /** |
|
| 66 | + * @param FileHelper_PHPClassInfo $info The class info instance. |
|
| 67 | + * @param string $declaration The full class declaration, e.g. "class SomeName extends SomeOtherClass". |
|
| 68 | + * @param string $keyword The class keyword, if any, i.e. "abstract" or "final". |
|
| 69 | + */ |
|
| 70 | 70 | public function __construct(FileHelper_PHPClassInfo $info, string $declaration, string $keyword) |
| 71 | 71 | { |
| 72 | 72 | $this->info = $info; |
@@ -76,31 +76,31 @@ discard block |
||
| 76 | 76 | $this->analyzeCode(); |
| 77 | 77 | } |
| 78 | 78 | |
| 79 | - /** |
|
| 80 | - * Check if this class is a subclass of the specified |
|
| 81 | - * class name. |
|
| 82 | - * |
|
| 83 | - * @param string $className |
|
| 84 | - * @return bool |
|
| 85 | - */ |
|
| 79 | + /** |
|
| 80 | + * Check if this class is a subclass of the specified |
|
| 81 | + * class name. |
|
| 82 | + * |
|
| 83 | + * @param string $className |
|
| 84 | + * @return bool |
|
| 85 | + */ |
|
| 86 | 86 | public function isSublassOf(string $className) : bool |
| 87 | 87 | { |
| 88 | 88 | return is_subclass_of($this->getNameNS(), $className); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - /** |
|
| 92 | - * The class name without namespace. |
|
| 93 | - * @return string |
|
| 94 | - */ |
|
| 91 | + /** |
|
| 92 | + * The class name without namespace. |
|
| 93 | + * @return string |
|
| 94 | + */ |
|
| 95 | 95 | public function getName() : string |
| 96 | 96 | { |
| 97 | 97 | return $this->name; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - /** |
|
| 101 | - * The absolute class name with namespace (if any). |
|
| 102 | - * @return string |
|
| 103 | - */ |
|
| 100 | + /** |
|
| 101 | + * The absolute class name with namespace (if any). |
|
| 102 | + * @return string |
|
| 103 | + */ |
|
| 104 | 104 | public function getNameNS() : string |
| 105 | 105 | { |
| 106 | 106 | $name = $this->getName(); |
@@ -112,48 +112,48 @@ discard block |
||
| 112 | 112 | return $name; |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - /** |
|
| 116 | - * Whether it is an abstract class. |
|
| 117 | - * @return bool |
|
| 118 | - */ |
|
| 115 | + /** |
|
| 116 | + * Whether it is an abstract class. |
|
| 117 | + * @return bool |
|
| 118 | + */ |
|
| 119 | 119 | public function isAbstract() : bool |
| 120 | 120 | { |
| 121 | 121 | return $this->abstract; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - /** |
|
| 125 | - * Whether it is a final class. |
|
| 126 | - * @return bool |
|
| 127 | - */ |
|
| 124 | + /** |
|
| 125 | + * Whether it is a final class. |
|
| 126 | + * @return bool |
|
| 127 | + */ |
|
| 128 | 128 | public function isFinal() : bool |
| 129 | 129 | { |
| 130 | 130 | return $this->final; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | - /** |
|
| 134 | - * The name of the class that this class extends (with namespace, if specified). |
|
| 135 | - * @return string |
|
| 136 | - */ |
|
| 133 | + /** |
|
| 134 | + * The name of the class that this class extends (with namespace, if specified). |
|
| 135 | + * @return string |
|
| 136 | + */ |
|
| 137 | 137 | public function getExtends() : string |
| 138 | 138 | { |
| 139 | 139 | return $this->extends; |
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - /** |
|
| 143 | - * A list of interfaces the class implements, if any. |
|
| 144 | - * @return string[] |
|
| 145 | - */ |
|
| 142 | + /** |
|
| 143 | + * A list of interfaces the class implements, if any. |
|
| 144 | + * @return string[] |
|
| 145 | + */ |
|
| 146 | 146 | public function getImplements() : array |
| 147 | 147 | { |
| 148 | 148 | return $this->implements; |
| 149 | 149 | } |
| 150 | 150 | |
| 151 | - /** |
|
| 152 | - * The class declaration string, with normalized spaces and sorted interface names. |
|
| 153 | - * NOTE: does not include the keyword "abstract" or "final". |
|
| 154 | - * |
|
| 155 | - * @return string |
|
| 156 | - */ |
|
| 151 | + /** |
|
| 152 | + * The class declaration string, with normalized spaces and sorted interface names. |
|
| 153 | + * NOTE: does not include the keyword "abstract" or "final". |
|
| 154 | + * |
|
| 155 | + * @return string |
|
| 156 | + */ |
|
| 157 | 157 | public function getDeclaration() : string |
| 158 | 158 | { |
| 159 | 159 | $parts = array(); |
@@ -173,10 +173,10 @@ discard block |
||
| 173 | 173 | return implode(' ', $parts); |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - /** |
|
| 177 | - * The keyword before "class", e.g. "abstract". |
|
| 178 | - * @return string |
|
| 179 | - */ |
|
| 176 | + /** |
|
| 177 | + * The keyword before "class", e.g. "abstract". |
|
| 178 | + * @return string |
|
| 179 | + */ |
|
| 180 | 180 | public function getKeyword() : string |
| 181 | 181 | { |
| 182 | 182 | return $this->keyword; |
@@ -40,17 +40,17 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | protected $classes = array(); |
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * The namespace detected in the file, if any. |
|
| 45 | - * @var string |
|
| 46 | - */ |
|
| 43 | + /** |
|
| 44 | + * The namespace detected in the file, if any. |
|
| 45 | + * @var string |
|
| 46 | + */ |
|
| 47 | 47 | protected $namespace = ''; |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * @param string $path The path to the PHP file to parse. |
|
| 51 | - * @throws FileHelper_Exception |
|
| 52 | - * @see FileHelper::findPHPClasses() |
|
| 53 | - */ |
|
| 49 | + /** |
|
| 50 | + * @param string $path The path to the PHP file to parse. |
|
| 51 | + * @throws FileHelper_Exception |
|
| 52 | + * @see FileHelper::findPHPClasses() |
|
| 53 | + */ |
|
| 54 | 54 | public function __construct(string $path) |
| 55 | 55 | { |
| 56 | 56 | $this->path = realpath($path); |
@@ -70,66 +70,66 @@ discard block |
||
| 70 | 70 | $this->parseFile(); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - /** |
|
| 74 | - * The name of the namespace of the classes in the file, if any. |
|
| 75 | - * @return string |
|
| 76 | - */ |
|
| 73 | + /** |
|
| 74 | + * The name of the namespace of the classes in the file, if any. |
|
| 75 | + * @return string |
|
| 76 | + */ |
|
| 77 | 77 | public function getNamespace() : string |
| 78 | 78 | { |
| 79 | 79 | return $this->namespace; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - /** |
|
| 83 | - * Whether the file contains a namespace. |
|
| 84 | - * @return bool |
|
| 85 | - */ |
|
| 82 | + /** |
|
| 83 | + * Whether the file contains a namespace. |
|
| 84 | + * @return bool |
|
| 85 | + */ |
|
| 86 | 86 | public function hasNamespace() : bool |
| 87 | 87 | { |
| 88 | 88 | return !empty($this->namespace); |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - /** |
|
| 92 | - * The absolute path to the file. |
|
| 93 | - * @return string |
|
| 94 | - */ |
|
| 91 | + /** |
|
| 92 | + * The absolute path to the file. |
|
| 93 | + * @return string |
|
| 94 | + */ |
|
| 95 | 95 | public function getPath() : string |
| 96 | 96 | { |
| 97 | 97 | return $this->path; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - /** |
|
| 101 | - * Whether any classes were found in the file. |
|
| 102 | - * @return bool |
|
| 103 | - */ |
|
| 100 | + /** |
|
| 101 | + * Whether any classes were found in the file. |
|
| 102 | + * @return bool |
|
| 103 | + */ |
|
| 104 | 104 | public function hasClasses() : bool |
| 105 | 105 | { |
| 106 | 106 | return !empty($this->classes); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | - /** |
|
| 110 | - * The names of the classes that were found in the file (with namespace if any). |
|
| 111 | - * @return string[] |
|
| 112 | - */ |
|
| 109 | + /** |
|
| 110 | + * The names of the classes that were found in the file (with namespace if any). |
|
| 111 | + * @return string[] |
|
| 112 | + */ |
|
| 113 | 113 | public function getClassNames() : array |
| 114 | 114 | { |
| 115 | 115 | return array_keys($this->classes); |
| 116 | 116 | } |
| 117 | 117 | |
| 118 | - /** |
|
| 119 | - * Retrieves all classes that were detected in the file, |
|
| 120 | - * which can be used to retrieve more information about |
|
| 121 | - * them. |
|
| 122 | - * |
|
| 123 | - * @return FileHelper_PHPClassInfo_Class[] |
|
| 124 | - */ |
|
| 118 | + /** |
|
| 119 | + * Retrieves all classes that were detected in the file, |
|
| 120 | + * which can be used to retrieve more information about |
|
| 121 | + * them. |
|
| 122 | + * |
|
| 123 | + * @return FileHelper_PHPClassInfo_Class[] |
|
| 124 | + */ |
|
| 125 | 125 | public function getClasses() : array |
| 126 | 126 | { |
| 127 | 127 | return array_values($this->classes); |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - /** |
|
| 131 | - * @throws FileHelper_Exception |
|
| 132 | - */ |
|
| 130 | + /** |
|
| 131 | + * @throws FileHelper_Exception |
|
| 132 | + */ |
|
| 133 | 133 | protected function parseFile() : void |
| 134 | 134 | { |
| 135 | 135 | $code = file_get_contents($this->path); |
@@ -184,13 +184,13 @@ discard block |
||
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Strips all whitespace from the string, replacing it with |
|
| 189 | - * regular spaces (newlines, tabs, etc.). |
|
| 190 | - * |
|
| 191 | - * @param string $string |
|
| 192 | - * @return string |
|
| 193 | - */ |
|
| 187 | + /** |
|
| 188 | + * Strips all whitespace from the string, replacing it with |
|
| 189 | + * regular spaces (newlines, tabs, etc.). |
|
| 190 | + * |
|
| 191 | + * @param string $string |
|
| 192 | + * @return string |
|
| 193 | + */ |
|
| 194 | 194 | protected function stripWhitespace(string $string) : string |
| 195 | 195 | { |
| 196 | 196 | return preg_replace('/[\s]/', ' ', $string); |