@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | protected function __construct($subject) |
| 70 | 70 | { |
| 71 | - if(is_array($subject)) |
|
| 71 | + if (is_array($subject)) |
|
| 72 | 72 | { |
| 73 | 73 | $this->parseSerialized($subject); |
| 74 | 74 | } |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | */ |
| 127 | 127 | public function getPrevious() : ConvertHelper_ThrowableInfo |
| 128 | 128 | { |
| 129 | - if(isset($this->previous)) { |
|
| 129 | + if (isset($this->previous)) { |
|
| 130 | 130 | return $this->previous; |
| 131 | 131 | } |
| 132 | 132 | |
@@ -151,18 +151,18 @@ discard block |
||
| 151 | 151 | |
| 152 | 152 | $string = 'Exception'; |
| 153 | 153 | |
| 154 | - if($this->hasCode()) { |
|
| 154 | + if ($this->hasCode()) { |
|
| 155 | 155 | $string .= ' #'.$this->code; |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | $string .= ': '.$this->getMessage().PHP_EOL; |
| 159 | 159 | |
| 160 | - foreach($calls as $call) |
|
| 160 | + foreach ($calls as $call) |
|
| 161 | 161 | { |
| 162 | 162 | $string .= $call->toString().PHP_EOL; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - if($this->hasPrevious()) |
|
| 165 | + if ($this->hasPrevious()) |
|
| 166 | 166 | { |
| 167 | 167 | $string .= PHP_EOL.PHP_EOL. |
| 168 | 168 | 'Previous error:'.PHP_EOL.PHP_EOL. |
@@ -253,11 +253,11 @@ discard block |
||
| 253 | 253 | 'previous' => null, |
| 254 | 254 | ); |
| 255 | 255 | |
| 256 | - if($this->hasPrevious()) { |
|
| 257 | - $result['previous'] = $this->previous->serialize(); |
|
| 256 | + if ($this->hasPrevious()) { |
|
| 257 | + $result['previous'] = $this->previous->serialize(); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | - foreach($this->calls as $call) |
|
| 260 | + foreach ($this->calls as $call) |
|
| 261 | 261 | { |
| 262 | 262 | $result['calls'][] = $call->serialize(); |
| 263 | 263 | } |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | public function getFolderDepth() : int |
| 287 | 287 | { |
| 288 | 288 | $depth = $this->getOption('folder-depth'); |
| 289 | - if(!empty($depth)) { |
|
| 289 | + if (!empty($depth)) { |
|
| 290 | 290 | return $depth; |
| 291 | 291 | } |
| 292 | 292 | |
@@ -327,12 +327,12 @@ discard block |
||
| 327 | 327 | |
| 328 | 328 | $this->setOptions($serialized['options']); |
| 329 | 329 | |
| 330 | - if(!empty($serialized['previous'])) |
|
| 330 | + if (!empty($serialized['previous'])) |
|
| 331 | 331 | { |
| 332 | 332 | $this->previous = ConvertHelper_ThrowableInfo::fromSerialized($serialized['previous']); |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | - foreach($serialized['calls'] as $def) |
|
| 335 | + foreach ($serialized['calls'] as $def) |
|
| 336 | 336 | { |
| 337 | 337 | $this->calls[] = ConvertHelper_ThrowableInfo_Call::fromSerialized($this, $def); |
| 338 | 338 | } |
@@ -344,16 +344,16 @@ discard block |
||
| 344 | 344 | $this->message = $e->getMessage(); |
| 345 | 345 | $this->code = $e->getCode(); |
| 346 | 346 | |
| 347 | - if(!isset($_REQUEST['REQUEST_URI'])) { |
|
| 347 | + if (!isset($_REQUEST['REQUEST_URI'])) { |
|
| 348 | 348 | $this->context = self::CONTEXT_COMMAND_LINE; |
| 349 | 349 | } |
| 350 | 350 | |
| 351 | 351 | $previous = $e->getPrevious(); |
| 352 | - if(!empty($previous)) { |
|
| 352 | + if (!empty($previous)) { |
|
| 353 | 353 | $this->previous = ConvertHelper::throwable2info($previous); |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - if(isset($_SERVER['REQUEST_URI'])) { |
|
| 356 | + if (isset($_SERVER['REQUEST_URI'])) { |
|
| 357 | 357 | $this->referer = $_SERVER['REQUEST_URI']; |
| 358 | 358 | } |
| 359 | 359 | |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | |
| 368 | 368 | $idx = 1; |
| 369 | 369 | |
| 370 | - foreach($trace as $entry) |
|
| 370 | + foreach ($trace as $entry) |
|
| 371 | 371 | { |
| 372 | 372 | $this->calls[] = ConvertHelper_ThrowableInfo_Call::fromTrace($this, $idx, $entry); |
| 373 | 373 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | |
| 72 | 72 | public function __construct() |
| 73 | 73 | { |
| 74 | - if(class_exists('\AppLocalize\Localization')) { |
|
| 74 | + if (class_exists('\AppLocalize\Localization')) { |
|
| 75 | 75 | \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged')); |
| 76 | 76 | } |
| 77 | 77 | } |
@@ -133,11 +133,11 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | $epoch = 'past'; |
| 135 | 135 | $key = 'singular'; |
| 136 | - if($this->dateDiff > 1) { |
|
| 136 | + if ($this->dateDiff > 1) { |
|
| 137 | 137 | $key = 'plural'; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if($this->future) { |
|
| 140 | + if ($this->future) { |
|
| 141 | 141 | $epoch = 'future'; |
| 142 | 142 | } |
| 143 | 143 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | protected function initTexts() : void |
| 152 | 152 | { |
| 153 | - if(isset(self::$texts)) { |
|
| 153 | + if (isset(self::$texts)) { |
|
| 154 | 154 | return; |
| 155 | 155 | } |
| 156 | 156 | |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | $day = (int)date("j", $this->dateTo); |
| 237 | 237 | $year = (int)date("Y", $this->dateFrom); |
| 238 | 238 | |
| 239 | - while(mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
| 239 | + while (mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo) |
|
| 240 | 240 | { |
| 241 | 241 | $months_difference++; |
| 242 | 242 | } |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | |
| 257 | 257 | protected function resolveCalculations() : void |
| 258 | 258 | { |
| 259 | - if(!isset($this->dateFrom)) |
|
| 259 | + if (!isset($this->dateFrom)) |
|
| 260 | 260 | { |
| 261 | 261 | throw new ConvertHelper_Exception( |
| 262 | 262 | 'No date from has been specified.', |
@@ -266,7 +266,7 @@ discard block |
||
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | // no date to set? Assume we want to use today. |
| 269 | - if(!isset($this->dateTo)) |
|
| 269 | + if (!isset($this->dateTo)) |
|
| 270 | 270 | { |
| 271 | 271 | $this->dateTo = time(); |
| 272 | 272 | } |
@@ -333,7 +333,7 @@ discard block |
||
| 333 | 333 | |
| 334 | 334 | $difference = $this->dateTo - $this->dateFrom; |
| 335 | 335 | |
| 336 | - if($difference < 0) |
|
| 336 | + if ($difference < 0) |
|
| 337 | 337 | { |
| 338 | 338 | $difference = $difference * -1; |
| 339 | 339 | $this->future = true; |
@@ -395,7 +395,7 @@ discard block |
||
| 395 | 395 | { |
| 396 | 396 | $converter = new ConvertHelper_DurationConverter(); |
| 397 | 397 | |
| 398 | - if($datefrom instanceof DateTime) |
|
| 398 | + if ($datefrom instanceof DateTime) |
|
| 399 | 399 | { |
| 400 | 400 | $converter->setDateFrom($datefrom); |
| 401 | 401 | } |
@@ -404,11 +404,11 @@ discard block |
||
| 404 | 404 | $converter->setDateFrom(ConvertHelper_Date::fromTimestamp($datefrom)); |
| 405 | 405 | } |
| 406 | 406 | |
| 407 | - if($dateto instanceof DateTime) |
|
| 407 | + if ($dateto instanceof DateTime) |
|
| 408 | 408 | { |
| 409 | 409 | $converter->setDateTo($dateto); |
| 410 | 410 | } |
| 411 | - else if($dateto > 0) |
|
| 411 | + else if ($dateto > 0) |
|
| 412 | 412 | { |
| 413 | 413 | $converter->setDateTo(ConvertHelper_Date::fromTimestamp($dateto)); |
| 414 | 414 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | { |
| 60 | 60 | $this->info = $info; |
| 61 | 61 | |
| 62 | - if(isset($data['serialized'])) |
|
| 62 | + if (isset($data['serialized'])) |
|
| 63 | 63 | { |
| 64 | 64 | $this->parseSerialized($data['serialized']); |
| 65 | 65 | } |
@@ -69,11 +69,11 @@ discard block |
||
| 69 | 69 | $this->position = $data['position']; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | - if($this->hasClass()) |
|
| 72 | + if ($this->hasClass()) |
|
| 73 | 73 | { |
| 74 | 74 | $this->type = self::TYPE_METHOD_CALL; |
| 75 | 75 | } |
| 76 | - else if($this->hasFunction()) |
|
| 76 | + else if ($this->hasFunction()) |
|
| 77 | 77 | { |
| 78 | 78 | $this->type = self::TYPE_FUNCTION_CALL; |
| 79 | 79 | } |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | public function getFileName() : string |
| 134 | 134 | { |
| 135 | - if($this->hasFile()) { |
|
| 135 | + if ($this->hasFile()) { |
|
| 136 | 136 | return basename($this->file); |
| 137 | 137 | } |
| 138 | 138 | |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | |
| 142 | 142 | public function getFileRelative() : string |
| 143 | 143 | { |
| 144 | - if($this->hasFile()) { |
|
| 144 | + if ($this->hasFile()) { |
|
| 145 | 145 | return FileHelper::relativizePathByDepth($this->file, $this->info->getFolderDepth()); |
| 146 | 146 | } |
| 147 | 147 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | $this->class = $data['class']; |
| 172 | 172 | $this->position = $data['position']; |
| 173 | 173 | |
| 174 | - foreach($data['arguments'] as $arg) |
|
| 174 | + foreach ($data['arguments'] as $arg) |
|
| 175 | 175 | { |
| 176 | 176 | $this->args[] = VariableInfo::fromSerialized($arg); |
| 177 | 177 | } |
@@ -182,29 +182,29 @@ discard block |
||
| 182 | 182 | */ |
| 183 | 183 | protected function parseTrace(array $trace) : void |
| 184 | 184 | { |
| 185 | - if(isset($trace['line'])) |
|
| 185 | + if (isset($trace['line'])) |
|
| 186 | 186 | { |
| 187 | 187 | $this->line = intval($trace['line']); |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - if(isset($trace['function'])) |
|
| 190 | + if (isset($trace['function'])) |
|
| 191 | 191 | { |
| 192 | 192 | $this->function = $trace['function']; |
| 193 | 193 | } |
| 194 | 194 | |
| 195 | - if(isset($trace['file'])) |
|
| 195 | + if (isset($trace['file'])) |
|
| 196 | 196 | { |
| 197 | 197 | $this->file = FileHelper::normalizePath($trace['file']); |
| 198 | 198 | } |
| 199 | 199 | |
| 200 | - if(isset($trace['class'])) |
|
| 200 | + if (isset($trace['class'])) |
|
| 201 | 201 | { |
| 202 | 202 | $this->class = $trace['class']; |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - if(isset($trace['args']) && !empty($trace['args'])) |
|
| 205 | + if (isset($trace['args']) && !empty($trace['args'])) |
|
| 206 | 206 | { |
| 207 | - foreach($trace['args'] as $arg) |
|
| 207 | + foreach ($trace['args'] as $arg) |
|
| 208 | 208 | { |
| 209 | 209 | $this->args[] = parseVariable($arg); |
| 210 | 210 | } |
@@ -219,13 +219,13 @@ discard block |
||
| 219 | 219 | |
| 220 | 220 | $tokens[] = '#'.sprintf('%0'.$padLength.'d', $this->getPosition()).' '; |
| 221 | 221 | |
| 222 | - if($this->hasFile()) { |
|
| 222 | + if ($this->hasFile()) { |
|
| 223 | 223 | $tokens[] = $this->getFileRelative().':'.$this->getLine(); |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - if($this->hasClass()) { |
|
| 226 | + if ($this->hasClass()) { |
|
| 227 | 227 | $tokens[] = $this->getClass().'::'.$this->getFunction().'('.$this->argumentsToString().')'; |
| 228 | - } else if($this->hasFunction()) { |
|
| 228 | + } else if ($this->hasFunction()) { |
|
| 229 | 229 | $tokens[] = $this->getFunction().'('.$this->argumentsToString().')'; |
| 230 | 230 | } |
| 231 | 231 | |
@@ -236,7 +236,7 @@ discard block |
||
| 236 | 236 | { |
| 237 | 237 | $tokens = array(); |
| 238 | 238 | |
| 239 | - foreach($this->args as $arg) |
|
| 239 | + foreach ($this->args as $arg) |
|
| 240 | 240 | { |
| 241 | 241 | $tokens[] = $arg->toString(); |
| 242 | 242 | } |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | 'arguments' => array() |
| 282 | 282 | ); |
| 283 | 283 | |
| 284 | - foreach($this->args as $argument) |
|
| 284 | + foreach ($this->args as $argument) |
|
| 285 | 285 | { |
| 286 | 286 | $result['arguments'][] = $argument->serialize(); |
| 287 | 287 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | $contents = file_get_contents($file); |
| 93 | 93 | |
| 94 | - if($contents === false) |
|
| 94 | + if ($contents === false) |
|
| 95 | 95 | { |
| 96 | 96 | throw new FileHelper_Exception( |
| 97 | 97 | 'Cannot load serialized content from file.', |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | |
| 106 | 106 | $result = @unserialize($contents); |
| 107 | 107 | |
| 108 | - if($result !== false) { |
|
| 108 | + if ($result !== false) { |
|
| 109 | 109 | return $result; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | */ |
| 129 | 129 | public static function deleteTree(string $rootFolder) : bool |
| 130 | 130 | { |
| 131 | - if(!file_exists($rootFolder)) { |
|
| 131 | + if (!file_exists($rootFolder)) { |
|
| 132 | 132 | return true; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -169,7 +169,7 @@ discard block |
||
| 169 | 169 | */ |
| 170 | 170 | public static function createFolder(string $path) : void |
| 171 | 171 | { |
| 172 | - if(is_dir($path) || mkdir($path, 0777, true)) { |
|
| 172 | + if (is_dir($path) || mkdir($path, 0777, true)) { |
|
| 173 | 173 | return; |
| 174 | 174 | } |
| 175 | 175 | |
@@ -204,11 +204,11 @@ discard block |
||
| 204 | 204 | |
| 205 | 205 | if ($item->isDir()) |
| 206 | 206 | { |
| 207 | - FileHelper::copyTree($itemPath, $target . '/' . $baseName); |
|
| 207 | + FileHelper::copyTree($itemPath, $target.'/'.$baseName); |
|
| 208 | 208 | } |
| 209 | - else if($item->isFile()) |
|
| 209 | + else if ($item->isFile()) |
|
| 210 | 210 | { |
| 211 | - self::copyFile($itemPath, $target . '/' . $baseName); |
|
| 211 | + self::copyFile($itemPath, $target.'/'.$baseName); |
|
| 212 | 212 | } |
| 213 | 213 | } |
| 214 | 214 | } |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | |
| 237 | 237 | $targetFolder = dirname($targetPath); |
| 238 | 238 | |
| 239 | - if(!file_exists($targetFolder)) |
|
| 239 | + if (!file_exists($targetFolder)) |
|
| 240 | 240 | { |
| 241 | 241 | self::createFolder($targetFolder); |
| 242 | 242 | } |
| 243 | - else if(!is_writable($targetFolder)) |
|
| 243 | + else if (!is_writable($targetFolder)) |
|
| 244 | 244 | { |
| 245 | 245 | throw new FileHelper_Exception( |
| 246 | 246 | sprintf('Target folder [%s] is not writable.', basename($targetFolder)), |
@@ -252,7 +252,7 @@ discard block |
||
| 252 | 252 | ); |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - if(copy($sourcePath, $targetPath)) { |
|
| 255 | + if (copy($sourcePath, $targetPath)) { |
|
| 256 | 256 | return; |
| 257 | 257 | } |
| 258 | 258 | |
@@ -279,11 +279,11 @@ discard block |
||
| 279 | 279 | */ |
| 280 | 280 | public static function deleteFile(string $filePath) : void |
| 281 | 281 | { |
| 282 | - if(!file_exists($filePath)) { |
|
| 282 | + if (!file_exists($filePath)) { |
|
| 283 | 283 | return; |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - if(unlink($filePath)) { |
|
| 286 | + if (unlink($filePath)) { |
|
| 287 | 287 | return; |
| 288 | 288 | } |
| 289 | 289 | |
@@ -307,10 +307,10 @@ discard block |
||
| 307 | 307 | * @return Csv |
| 308 | 308 | * @see CSVHelper::createParser() |
| 309 | 309 | */ |
| 310 | - public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : Csv |
|
| 310 | + public static function createCSVParser(string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : Csv |
|
| 311 | 311 | { |
| 312 | - if($delimiter==='') { $delimiter = ';'; } |
|
| 313 | - if($enclosure==='') { $enclosure = '"'; } |
|
| 312 | + if ($delimiter === '') { $delimiter = ';'; } |
|
| 313 | + if ($enclosure === '') { $enclosure = '"'; } |
|
| 314 | 314 | |
| 315 | 315 | $parser = CSVHelper::createParser($delimiter); |
| 316 | 316 | $parser->enclosure = $enclosure; |
@@ -334,11 +334,11 @@ discard block |
||
| 334 | 334 | * @see parseCSVFile() |
| 335 | 335 | * @see FileHelper::ERROR_PARSING_CSV |
| 336 | 336 | */ |
| 337 | - public static function parseCSVString(string $csv, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
|
| 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); |
| 340 | 340 | |
| 341 | - if($parser->parse($csv)) |
|
| 341 | + if ($parser->parse($csv)) |
|
| 342 | 342 | { |
| 343 | 343 | return $parser->data; |
| 344 | 344 | } |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
| 367 | 367 | * @see FileHelper::ERROR_CANNOT_READ_FILE_CONTENTS |
| 368 | 368 | */ |
| 369 | - public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading=false) : array |
|
| 369 | + public static function parseCSVFile(string $filePath, string $delimiter = ';', string $enclosure = '"', string $escape = '\\', bool $heading = false) : array |
|
| 370 | 370 | { |
| 371 | 371 | $content = self::readContents($filePath); |
| 372 | 372 | |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | public static function detectMimeType(string $fileName) : ?string |
| 384 | 384 | { |
| 385 | 385 | $ext = self::getExtension($fileName); |
| 386 | - if(empty($ext)) { |
|
| 386 | + if (empty($ext)) { |
|
| 387 | 387 | return null; |
| 388 | 388 | } |
| 389 | 389 | |
@@ -423,11 +423,11 @@ discard block |
||
| 423 | 423 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
| 424 | 424 | * @see FileHelper::ERROR_UNKNOWN_FILE_MIME_TYPE |
| 425 | 425 | */ |
| 426 | - public static function sendFile(string $filePath, ?string $fileName = null, bool $asAttachment=true) : void |
|
| 426 | + public static function sendFile(string $filePath, ?string $fileName = null, bool $asAttachment = true) : void |
|
| 427 | 427 | { |
| 428 | 428 | self::requireFileExists($filePath); |
| 429 | 429 | |
| 430 | - if(empty($fileName)) { |
|
| 430 | + if (empty($fileName)) { |
|
| 431 | 431 | $fileName = basename($filePath); |
| 432 | 432 | } |
| 433 | 433 | |
@@ -445,10 +445,10 @@ discard block |
||
| 445 | 445 | |
| 446 | 446 | header("Cache-Control: public", true); |
| 447 | 447 | header("Content-Description: File Transfer", true); |
| 448 | - header("Content-Type: " . $mime, true); |
|
| 448 | + header("Content-Type: ".$mime, true); |
|
| 449 | 449 | |
| 450 | 450 | $disposition = 'inline'; |
| 451 | - if($asAttachment) { |
|
| 451 | + if ($asAttachment) { |
|
| 452 | 452 | $disposition = 'attachment'; |
| 453 | 453 | } |
| 454 | 454 | |
@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | public static function downloadFile(string $url) : string |
| 475 | 475 | { |
| 476 | 476 | $ch = curl_init(); |
| 477 | - if(!is_resource($ch)) |
|
| 477 | + if (!is_resource($ch)) |
|
| 478 | 478 | { |
| 479 | 479 | throw new FileHelper_Exception( |
| 480 | 480 | 'Could not initialize a new cURL instance.', |
@@ -495,7 +495,7 @@ discard block |
||
| 495 | 495 | |
| 496 | 496 | $output = curl_exec($ch); |
| 497 | 497 | |
| 498 | - if($output === false) { |
|
| 498 | + if ($output === false) { |
|
| 499 | 499 | throw new FileHelper_Exception( |
| 500 | 500 | 'Unable to open URL', |
| 501 | 501 | sprintf( |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | |
| 510 | 510 | curl_close($ch); |
| 511 | 511 | |
| 512 | - if(is_string($output)) |
|
| 512 | + if (is_string($output)) |
|
| 513 | 513 | { |
| 514 | 514 | return $output; |
| 515 | 515 | } |
@@ -544,14 +544,14 @@ discard block |
||
| 544 | 544 | */ |
| 545 | 545 | public static function getExtension($pathOrDirIterator, bool $lowercase = true) : string |
| 546 | 546 | { |
| 547 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 547 | + if ($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 548 | 548 | $filename = $pathOrDirIterator->getFilename(); |
| 549 | 549 | } else { |
| 550 | 550 | $filename = basename(strval($pathOrDirIterator)); |
| 551 | 551 | } |
| 552 | 552 | |
| 553 | 553 | $ext = pathinfo($filename, PATHINFO_EXTENSION); |
| 554 | - if($lowercase) { |
|
| 554 | + if ($lowercase) { |
|
| 555 | 555 | $ext = mb_strtolower($ext); |
| 556 | 556 | } |
| 557 | 557 | |
@@ -573,13 +573,13 @@ discard block |
||
| 573 | 573 | public static function getFilename($pathOrDirIterator, $extension = true) : string |
| 574 | 574 | { |
| 575 | 575 | $path = strval($pathOrDirIterator); |
| 576 | - if($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 576 | + if ($pathOrDirIterator instanceof DirectoryIterator) { |
|
| 577 | 577 | $path = $pathOrDirIterator->getFilename(); |
| 578 | 578 | } |
| 579 | 579 | |
| 580 | 580 | $path = self::normalizePath($path); |
| 581 | 581 | |
| 582 | - if(!$extension) { |
|
| 582 | + if (!$extension) { |
|
| 583 | 583 | return pathinfo($path, PATHINFO_FILENAME); |
| 584 | 584 | } |
| 585 | 585 | |
@@ -599,18 +599,18 @@ discard block |
||
| 599 | 599 | * @see FileHelper::ERROR_CANNOT_FIND_JSON_FILE |
| 600 | 600 | * @see FileHelper::ERROR_CANNOT_DECODE_JSON_FILE |
| 601 | 601 | */ |
| 602 | - public static function parseJSONFile(string $file, string $targetEncoding='', $sourceEncoding=null) : array |
|
| 602 | + public static function parseJSONFile(string $file, string $targetEncoding = '', $sourceEncoding = null) : array |
|
| 603 | 603 | { |
| 604 | 604 | self::requireFileExists($file, self::ERROR_CANNOT_FIND_JSON_FILE); |
| 605 | 605 | |
| 606 | 606 | $content = self::readContents($file); |
| 607 | 607 | |
| 608 | - if(!empty($targetEncoding)) { |
|
| 608 | + if (!empty($targetEncoding)) { |
|
| 609 | 609 | $content = mb_convert_encoding($content, $targetEncoding, $sourceEncoding); |
| 610 | 610 | } |
| 611 | 611 | |
| 612 | 612 | $json = json_decode($content, true); |
| 613 | - if($json === false || $json === NULL) { |
|
| 613 | + if ($json === false || $json === NULL) { |
|
| 614 | 614 | throw new FileHelper_Exception( |
| 615 | 615 | 'Cannot decode json data', |
| 616 | 616 | sprintf( |
@@ -650,13 +650,13 @@ discard block |
||
| 650 | 650 | |
| 651 | 651 | $name = str_replace(array_keys($replaces), array_values($replaces), $name); |
| 652 | 652 | |
| 653 | - while(strstr($name, ' ')) { |
|
| 653 | + while (strstr($name, ' ')) { |
|
| 654 | 654 | $name = str_replace(' ', ' ', $name); |
| 655 | 655 | } |
| 656 | 656 | |
| 657 | 657 | $name = str_replace(array_keys($replaces), array_values($replaces), $name); |
| 658 | 658 | |
| 659 | - while(strstr($name, '..')) { |
|
| 659 | + while (strstr($name, '..')) { |
|
| 660 | 660 | $name = str_replace('..', '.', $name); |
| 661 | 661 | } |
| 662 | 662 | |
@@ -692,7 +692,7 @@ discard block |
||
| 692 | 692 | * @throws FileHelper_Exception |
| 693 | 693 | * @see FileHelper::createFileFinder() |
| 694 | 694 | */ |
| 695 | - public static function findHTMLFiles(string $targetFolder, array $options=array()) : array |
|
| 695 | + public static function findHTMLFiles(string $targetFolder, array $options = array()) : array |
|
| 696 | 696 | { |
| 697 | 697 | return self::findFiles($targetFolder, array('html'), $options); |
| 698 | 698 | } |
@@ -710,7 +710,7 @@ discard block |
||
| 710 | 710 | * @throws FileHelper_Exception |
| 711 | 711 | * @see FileHelper::createFileFinder() |
| 712 | 712 | */ |
| 713 | - public static function findPHPFiles(string $targetFolder, array $options=array()) : array |
|
| 713 | + public static function findPHPFiles(string $targetFolder, array $options = array()) : array |
|
| 714 | 714 | { |
| 715 | 715 | return self::findFiles($targetFolder, array('php'), $options); |
| 716 | 716 | } |
@@ -729,7 +729,7 @@ discard block |
||
| 729 | 729 | * @return string[] |
| 730 | 730 | * @see FileHelper::createFileFinder() |
| 731 | 731 | */ |
| 732 | - public static function findFiles(string $targetFolder, array $extensions=array(), array $options=array()) : array |
|
| 732 | + public static function findFiles(string $targetFolder, array $extensions = array(), array $options = array()) : array |
|
| 733 | 733 | { |
| 734 | 734 | $finder = self::createFileFinder($targetFolder); |
| 735 | 735 | |
@@ -739,16 +739,16 @@ discard block |
||
| 739 | 739 | |
| 740 | 740 | $finder->setPathmodeStrip(); |
| 741 | 741 | |
| 742 | - if(isset($options['relative-path']) && $options['relative-path'] === true) |
|
| 742 | + if (isset($options['relative-path']) && $options['relative-path'] === true) |
|
| 743 | 743 | { |
| 744 | 744 | $finder->setPathmodeRelative(); |
| 745 | 745 | } |
| 746 | - else if(isset($options['absolute-path']) && $options['absolute-path'] === true) |
|
| 746 | + else if (isset($options['absolute-path']) && $options['absolute-path'] === true) |
|
| 747 | 747 | { |
| 748 | 748 | $finder->setPathmodeAbsolute(); |
| 749 | 749 | } |
| 750 | 750 | |
| 751 | - if(isset($options['strip-extension'])) |
|
| 751 | + if (isset($options['strip-extension'])) |
|
| 752 | 752 | { |
| 753 | 753 | $finder->stripExtensions(); |
| 754 | 754 | } |
@@ -766,12 +766,12 @@ discard block |
||
| 766 | 766 | * @param bool $keepPath Whether to keep the path component, if any. Default PHP pathinfo behavior is not to. |
| 767 | 767 | * @return string |
| 768 | 768 | */ |
| 769 | - public static function removeExtension(string $filename, bool $keepPath=false) : string |
|
| 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 |
| 772 | 772 | $filename = self::normalizePath($filename); |
| 773 | 773 | |
| 774 | - if(!$keepPath) |
|
| 774 | + if (!$keepPath) |
|
| 775 | 775 | { |
| 776 | 776 | return pathinfo($filename, PATHINFO_FILENAME); |
| 777 | 777 | } |
@@ -807,7 +807,7 @@ discard block |
||
| 807 | 807 | public static function detectUTFBom(string $filename) : ?string |
| 808 | 808 | { |
| 809 | 809 | $fp = fopen($filename, 'r'); |
| 810 | - if($fp === false) |
|
| 810 | + if ($fp === false) |
|
| 811 | 811 | { |
| 812 | 812 | throw new FileHelper_Exception( |
| 813 | 813 | 'Cannot open file for reading', |
@@ -822,10 +822,10 @@ discard block |
||
| 822 | 822 | |
| 823 | 823 | $boms = self::getUTFBOMs(); |
| 824 | 824 | |
| 825 | - foreach($boms as $bom => $value) |
|
| 825 | + foreach ($boms as $bom => $value) |
|
| 826 | 826 | { |
| 827 | 827 | $length = mb_strlen($value); |
| 828 | - if(mb_substr($text, 0, $length) == $value) { |
|
| 828 | + if (mb_substr($text, 0, $length) == $value) { |
|
| 829 | 829 | return $bom; |
| 830 | 830 | } |
| 831 | 831 | } |
@@ -842,13 +842,13 @@ discard block |
||
| 842 | 842 | */ |
| 843 | 843 | public static function getUTFBOMs() : array |
| 844 | 844 | { |
| 845 | - if(!isset(self::$utfBoms)) { |
|
| 845 | + if (!isset(self::$utfBoms)) { |
|
| 846 | 846 | self::$utfBoms = array( |
| 847 | - 'UTF32-BE' => chr(0x00) . chr(0x00) . chr(0xFE) . chr(0xFF), |
|
| 848 | - 'UTF32-LE' => chr(0xFF) . chr(0xFE) . chr(0x00) . chr(0x00), |
|
| 849 | - 'UTF16-BE' => chr(0xFE) . chr(0xFF), |
|
| 850 | - 'UTF16-LE' => chr(0xFF) . chr(0xFE), |
|
| 851 | - 'UTF8' => chr(0xEF) . chr(0xBB) . chr(0xBF) |
|
| 847 | + 'UTF32-BE' => chr(0x00).chr(0x00).chr(0xFE).chr(0xFF), |
|
| 848 | + 'UTF32-LE' => chr(0xFF).chr(0xFE).chr(0x00).chr(0x00), |
|
| 849 | + 'UTF16-BE' => chr(0xFE).chr(0xFF), |
|
| 850 | + 'UTF16-LE' => chr(0xFF).chr(0xFE), |
|
| 851 | + 'UTF8' => chr(0xEF).chr(0xBB).chr(0xBF) |
|
| 852 | 852 | ); |
| 853 | 853 | } |
| 854 | 854 | |
@@ -869,7 +869,7 @@ discard block |
||
| 869 | 869 | $encodings = self::getKnownUnicodeEncodings(); |
| 870 | 870 | |
| 871 | 871 | $keep = array(); |
| 872 | - foreach($encodings as $string) |
|
| 872 | + foreach ($encodings as $string) |
|
| 873 | 873 | { |
| 874 | 874 | $withHyphen = str_replace('UTF', 'UTF-', $string); |
| 875 | 875 | |
@@ -916,16 +916,16 @@ discard block |
||
| 916 | 916 | * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
| 917 | 917 | * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
| 918 | 918 | */ |
| 919 | - public static function saveAsJSON($data, string $file, bool $pretty=false) : void |
|
| 919 | + public static function saveAsJSON($data, string $file, bool $pretty = false) : void |
|
| 920 | 920 | { |
| 921 | 921 | $options = null; |
| 922 | - if($pretty) { |
|
| 922 | + if ($pretty) { |
|
| 923 | 923 | $options = JSON_PRETTY_PRINT; |
| 924 | 924 | } |
| 925 | 925 | |
| 926 | 926 | $json = json_encode($data, $options); |
| 927 | 927 | |
| 928 | - if($json===false) |
|
| 928 | + if ($json === false) |
|
| 929 | 929 | { |
| 930 | 930 | $errorCode = json_last_error(); |
| 931 | 931 | |
@@ -951,14 +951,14 @@ discard block |
||
| 951 | 951 | * @see FileHelper::ERROR_SAVE_FILE_NOT_WRITABLE |
| 952 | 952 | * @see FileHelper::ERROR_SAVE_FILE_WRITE_FAILED |
| 953 | 953 | */ |
| 954 | - public static function saveFile(string $filePath, string $content='') : void |
|
| 954 | + public static function saveFile(string $filePath, string $content = '') : void |
|
| 955 | 955 | { |
| 956 | 956 | $filePath = self::normalizePath($filePath); |
| 957 | 957 | |
| 958 | 958 | // target file already exists |
| 959 | - if(file_exists($filePath)) |
|
| 959 | + if (file_exists($filePath)) |
|
| 960 | 960 | { |
| 961 | - if(!is_writable($filePath)) |
|
| 961 | + if (!is_writable($filePath)) |
|
| 962 | 962 | { |
| 963 | 963 | throw new FileHelper_Exception( |
| 964 | 964 | sprintf('Cannot save file: target file [%s] exists, but is not writable.', basename($filePath)), |
@@ -978,7 +978,7 @@ discard block |
||
| 978 | 978 | // create the folder as needed |
| 979 | 979 | self::createFolder($targetFolder); |
| 980 | 980 | |
| 981 | - if(!is_writable($targetFolder)) |
|
| 981 | + if (!is_writable($targetFolder)) |
|
| 982 | 982 | { |
| 983 | 983 | throw new FileHelper_Exception( |
| 984 | 984 | sprintf('Cannot save file: target folder [%s] is not writable.', basename($targetFolder)), |
@@ -991,7 +991,7 @@ discard block |
||
| 991 | 991 | } |
| 992 | 992 | } |
| 993 | 993 | |
| 994 | - if(is_dir($filePath)) |
|
| 994 | + if (is_dir($filePath)) |
|
| 995 | 995 | { |
| 996 | 996 | throw new FileHelper_Exception( |
| 997 | 997 | sprintf('Cannot save file: the target [%s] is a directory.', basename($filePath)), |
@@ -1003,7 +1003,7 @@ discard block |
||
| 1003 | 1003 | ); |
| 1004 | 1004 | } |
| 1005 | 1005 | |
| 1006 | - if(file_put_contents($filePath, $content) !== false) { |
|
| 1006 | + if (file_put_contents($filePath, $content) !== false) { |
|
| 1007 | 1007 | return; |
| 1008 | 1008 | } |
| 1009 | 1009 | |
@@ -1042,7 +1042,7 @@ discard block |
||
| 1042 | 1042 | { |
| 1043 | 1043 | static $checked = array(); |
| 1044 | 1044 | |
| 1045 | - if(isset($checked[$command])) { |
|
| 1045 | + if (isset($checked[$command])) { |
|
| 1046 | 1046 | return $checked[$command]; |
| 1047 | 1047 | } |
| 1048 | 1048 | |
@@ -1055,7 +1055,7 @@ discard block |
||
| 1055 | 1055 | |
| 1056 | 1056 | $os = strtolower(PHP_OS_FAMILY); |
| 1057 | 1057 | |
| 1058 | - if(!isset($osCommands[$os])) |
|
| 1058 | + if (!isset($osCommands[$os])) |
|
| 1059 | 1059 | { |
| 1060 | 1060 | throw new FileHelper_Exception( |
| 1061 | 1061 | 'Unsupported OS for CLI commands', |
@@ -1081,7 +1081,7 @@ discard block |
||
| 1081 | 1081 | $pipes |
| 1082 | 1082 | ); |
| 1083 | 1083 | |
| 1084 | - if($process === false) { |
|
| 1084 | + if ($process === false) { |
|
| 1085 | 1085 | $checked[$command] = false; |
| 1086 | 1086 | return false; |
| 1087 | 1087 | } |
@@ -1113,7 +1113,7 @@ discard block |
||
| 1113 | 1113 | */ |
| 1114 | 1114 | public static function checkPHPFileSyntax(string $path) |
| 1115 | 1115 | { |
| 1116 | - if(!self::canMakePHPCalls()) { |
|
| 1116 | + if (!self::canMakePHPCalls()) { |
|
| 1117 | 1117 | return true; |
| 1118 | 1118 | } |
| 1119 | 1119 | |
@@ -1124,7 +1124,7 @@ discard block |
||
| 1124 | 1124 | // when the validation is successful, the first entry |
| 1125 | 1125 | // in the array contains the success message. When it |
| 1126 | 1126 | // is invalid, the first entry is always empty. |
| 1127 | - if(!empty($output[0])) { |
|
| 1127 | + if (!empty($output[0])) { |
|
| 1128 | 1128 | return true; |
| 1129 | 1129 | } |
| 1130 | 1130 | |
@@ -1145,7 +1145,7 @@ discard block |
||
| 1145 | 1145 | public static function getModifiedDate(string $path) : ?DateTime |
| 1146 | 1146 | { |
| 1147 | 1147 | $time = filemtime($path); |
| 1148 | - if($time === false) { |
|
| 1148 | + if ($time === false) { |
|
| 1149 | 1149 | return null; |
| 1150 | 1150 | } |
| 1151 | 1151 | |
@@ -1175,11 +1175,11 @@ discard block |
||
| 1175 | 1175 | */ |
| 1176 | 1176 | public static function getSubfolders($targetFolder, array $options = array()) |
| 1177 | 1177 | { |
| 1178 | - if($targetFolder instanceof DirectoryIterator) { |
|
| 1178 | + if ($targetFolder instanceof DirectoryIterator) { |
|
| 1179 | 1179 | $targetFolder = $targetFolder->getPathname(); |
| 1180 | 1180 | } |
| 1181 | 1181 | |
| 1182 | - if(!is_dir($targetFolder)) |
|
| 1182 | + if (!is_dir($targetFolder)) |
|
| 1183 | 1183 | { |
| 1184 | 1184 | throw new FileHelper_Exception( |
| 1185 | 1185 | 'Target folder does not exist', |
@@ -1203,29 +1203,29 @@ discard block |
||
| 1203 | 1203 | |
| 1204 | 1204 | $d = new DirectoryIterator($targetFolder); |
| 1205 | 1205 | |
| 1206 | - foreach($d as $item) |
|
| 1206 | + foreach ($d as $item) |
|
| 1207 | 1207 | { |
| 1208 | - if($item->isDir() && !$item->isDot()) |
|
| 1208 | + if ($item->isDir() && !$item->isDot()) |
|
| 1209 | 1209 | { |
| 1210 | 1210 | $name = $item->getFilename(); |
| 1211 | 1211 | |
| 1212 | - if(!$options['absolute-path']) { |
|
| 1212 | + if (!$options['absolute-path']) { |
|
| 1213 | 1213 | $result[] = $name; |
| 1214 | 1214 | } else { |
| 1215 | 1215 | $result[] = $targetFolder.'/'.$name; |
| 1216 | 1216 | } |
| 1217 | 1217 | |
| 1218 | - if(!$options['recursive']) |
|
| 1218 | + if (!$options['recursive']) |
|
| 1219 | 1219 | { |
| 1220 | 1220 | continue; |
| 1221 | 1221 | } |
| 1222 | 1222 | |
| 1223 | 1223 | $subs = self::getSubfolders($targetFolder.'/'.$name, $options); |
| 1224 | - foreach($subs as $sub) |
|
| 1224 | + foreach ($subs as $sub) |
|
| 1225 | 1225 | { |
| 1226 | 1226 | $relative = $name.'/'.$sub; |
| 1227 | 1227 | |
| 1228 | - if(!$options['absolute-path']) { |
|
| 1228 | + if (!$options['absolute-path']) { |
|
| 1229 | 1229 | $result[] = $relative; |
| 1230 | 1230 | } else { |
| 1231 | 1231 | $result[] = $targetFolder.'/'.$relative; |
@@ -1275,7 +1275,7 @@ discard block |
||
| 1275 | 1275 | $unit = preg_replace('/[^bkmgtpezy]/i', '', $size); // Remove the non-unit characters from the size. |
| 1276 | 1276 | $size = floatval(preg_replace('/[^0-9\.]/', '', $size)); // Remove the non-numeric characters from the size. |
| 1277 | 1277 | |
| 1278 | - if($unit) |
|
| 1278 | + if ($unit) |
|
| 1279 | 1279 | { |
| 1280 | 1280 | // Find the position of the unit in the ordered string which is the power of magnitude to multiply a kilobyte by. |
| 1281 | 1281 | return round($size * pow(1024, stripos('bkmgtpezy', $unit[0]))); |
@@ -1294,7 +1294,7 @@ discard block |
||
| 1294 | 1294 | * @param int $depth The folder depth to reduce the path to |
| 1295 | 1295 | * @return string |
| 1296 | 1296 | */ |
| 1297 | - public static function relativizePathByDepth(string $path, int $depth=2) : string |
|
| 1297 | + public static function relativizePathByDepth(string $path, int $depth = 2) : string |
|
| 1298 | 1298 | { |
| 1299 | 1299 | $path = self::normalizePath($path); |
| 1300 | 1300 | |
@@ -1302,17 +1302,17 @@ discard block |
||
| 1302 | 1302 | $tokens = array_filter($tokens); // remove empty entries (trailing slash for example) |
| 1303 | 1303 | $tokens = array_values($tokens); // re-index keys |
| 1304 | 1304 | |
| 1305 | - if(empty($tokens)) { |
|
| 1305 | + if (empty($tokens)) { |
|
| 1306 | 1306 | return ''; |
| 1307 | 1307 | } |
| 1308 | 1308 | |
| 1309 | 1309 | // remove the drive if present |
| 1310 | - if(strstr($tokens[0], ':')) { |
|
| 1310 | + if (strstr($tokens[0], ':')) { |
|
| 1311 | 1311 | array_shift($tokens); |
| 1312 | 1312 | } |
| 1313 | 1313 | |
| 1314 | 1314 | // path was only the drive |
| 1315 | - if(count($tokens) == 0) { |
|
| 1315 | + if (count($tokens) == 0) { |
|
| 1316 | 1316 | return ''; |
| 1317 | 1317 | } |
| 1318 | 1318 | |
@@ -1321,8 +1321,8 @@ discard block |
||
| 1321 | 1321 | |
| 1322 | 1322 | // reduce the path to the specified depth |
| 1323 | 1323 | $length = count($tokens); |
| 1324 | - if($length > $depth) { |
|
| 1325 | - $tokens = array_slice($tokens, $length-$depth); |
|
| 1324 | + if ($length > $depth) { |
|
| 1325 | + $tokens = array_slice($tokens, $length - $depth); |
|
| 1326 | 1326 | } |
| 1327 | 1327 | |
| 1328 | 1328 | // append the last element again |
@@ -1370,14 +1370,14 @@ discard block |
||
| 1370 | 1370 | * |
| 1371 | 1371 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
| 1372 | 1372 | */ |
| 1373 | - public static function requireFileExists(string $path, ?int $errorCode=null) : string |
|
| 1373 | + public static function requireFileExists(string $path, ?int $errorCode = null) : string |
|
| 1374 | 1374 | { |
| 1375 | 1375 | $result = realpath($path); |
| 1376 | - if($result !== false) { |
|
| 1376 | + if ($result !== false) { |
|
| 1377 | 1377 | return $result; |
| 1378 | 1378 | } |
| 1379 | 1379 | |
| 1380 | - if($errorCode === null) { |
|
| 1380 | + if ($errorCode === null) { |
|
| 1381 | 1381 | $errorCode = self::ERROR_FILE_DOES_NOT_EXIST; |
| 1382 | 1382 | } |
| 1383 | 1383 | |
@@ -1394,15 +1394,15 @@ discard block |
||
| 1394 | 1394 | * @return string |
| 1395 | 1395 | * @throws FileHelper_Exception |
| 1396 | 1396 | */ |
| 1397 | - public static function requireFileReadable(string $path, ?int $errorCode=null) : string |
|
| 1397 | + public static function requireFileReadable(string $path, ?int $errorCode = null) : string |
|
| 1398 | 1398 | { |
| 1399 | 1399 | $path = self::requireFileExists($path, $errorCode); |
| 1400 | 1400 | |
| 1401 | - if(is_readable($path)) { |
|
| 1401 | + if (is_readable($path)) { |
|
| 1402 | 1402 | return $path; |
| 1403 | 1403 | } |
| 1404 | 1404 | |
| 1405 | - if($errorCode === null) { |
|
| 1405 | + if ($errorCode === null) { |
|
| 1406 | 1406 | $errorCode = self::ERROR_FILE_NOT_READABLE; |
| 1407 | 1407 | } |
| 1408 | 1408 | |
@@ -1431,15 +1431,15 @@ discard block |
||
| 1431 | 1431 | |
| 1432 | 1432 | $file = new \SplFileObject($path); |
| 1433 | 1433 | |
| 1434 | - if($file->eof()) { |
|
| 1434 | + if ($file->eof()) { |
|
| 1435 | 1435 | return ''; |
| 1436 | 1436 | } |
| 1437 | 1437 | |
| 1438 | - $targetLine = $lineNumber-1; |
|
| 1438 | + $targetLine = $lineNumber - 1; |
|
| 1439 | 1439 | |
| 1440 | 1440 | $file->seek($targetLine); |
| 1441 | 1441 | |
| 1442 | - if($file->key() !== $targetLine) { |
|
| 1442 | + if ($file->key() !== $targetLine) { |
|
| 1443 | 1443 | return null; |
| 1444 | 1444 | } |
| 1445 | 1445 | |
@@ -1465,7 +1465,7 @@ discard block |
||
| 1465 | 1465 | $number = $spl->key(); |
| 1466 | 1466 | |
| 1467 | 1467 | // if seeking to the end the cursor is still at 0, there are no lines. |
| 1468 | - if($number === 0) |
|
| 1468 | + if ($number === 0) |
|
| 1469 | 1469 | { |
| 1470 | 1470 | // since it's a very small file, to get reliable results, |
| 1471 | 1471 | // we read its contents and use that to determine what |
@@ -1473,13 +1473,13 @@ discard block |
||
| 1473 | 1473 | // that this is not pactical to solve with the SplFileObject. |
| 1474 | 1474 | $content = file_get_contents($path); |
| 1475 | 1475 | |
| 1476 | - if(empty($content)) { |
|
| 1476 | + if (empty($content)) { |
|
| 1477 | 1477 | return 0; |
| 1478 | 1478 | } |
| 1479 | 1479 | } |
| 1480 | 1480 | |
| 1481 | 1481 | // return the line number we were able to reach + 1 (key is zero-based) |
| 1482 | - return $number+1; |
|
| 1482 | + return $number + 1; |
|
| 1483 | 1483 | } |
| 1484 | 1484 | |
| 1485 | 1485 | /** |
@@ -1527,13 +1527,13 @@ discard block |
||
| 1527 | 1527 | * @see FileHelper::ERROR_FILE_DOES_NOT_EXIST |
| 1528 | 1528 | * @see FileHelper::ERROR_CANNOT_OPEN_FILE_TO_READ_LINES |
| 1529 | 1529 | */ |
| 1530 | - public static function readLines(string $filePath, int $amount=0) : array |
|
| 1530 | + public static function readLines(string $filePath, int $amount = 0) : array |
|
| 1531 | 1531 | { |
| 1532 | 1532 | self::requireFileExists($filePath); |
| 1533 | 1533 | |
| 1534 | 1534 | $fn = fopen($filePath, "r"); |
| 1535 | 1535 | |
| 1536 | - if($fn === false) |
|
| 1536 | + if ($fn === false) |
|
| 1537 | 1537 | { |
| 1538 | 1538 | throw new FileHelper_Exception( |
| 1539 | 1539 | 'Could not open file for reading.', |
@@ -1549,19 +1549,19 @@ discard block |
||
| 1549 | 1549 | $counter = 0; |
| 1550 | 1550 | $first = true; |
| 1551 | 1551 | |
| 1552 | - while(!feof($fn)) |
|
| 1552 | + while (!feof($fn)) |
|
| 1553 | 1553 | { |
| 1554 | 1554 | $counter++; |
| 1555 | 1555 | |
| 1556 | 1556 | $line = fgets($fn); |
| 1557 | 1557 | |
| 1558 | 1558 | // can happen with zero length files |
| 1559 | - if($line === false) { |
|
| 1559 | + if ($line === false) { |
|
| 1560 | 1560 | continue; |
| 1561 | 1561 | } |
| 1562 | 1562 | |
| 1563 | 1563 | // the first line may contain a unicode BOM marker. |
| 1564 | - if($first) |
|
| 1564 | + if ($first) |
|
| 1565 | 1565 | { |
| 1566 | 1566 | $line = ConvertHelper::stripUTFBom($line); |
| 1567 | 1567 | $first = false; |
@@ -1569,7 +1569,7 @@ discard block |
||
| 1569 | 1569 | |
| 1570 | 1570 | $result[] = $line; |
| 1571 | 1571 | |
| 1572 | - if($amount > 0 && $counter == $amount) { |
|
| 1572 | + if ($amount > 0 && $counter == $amount) { |
|
| 1573 | 1573 | break; |
| 1574 | 1574 | } |
| 1575 | 1575 | } |
@@ -1595,7 +1595,7 @@ discard block |
||
| 1595 | 1595 | |
| 1596 | 1596 | $result = file_get_contents($filePath); |
| 1597 | 1597 | |
| 1598 | - if($result !== false) { |
|
| 1598 | + if ($result !== false) { |
|
| 1599 | 1599 | return $result; |
| 1600 | 1600 | } |
| 1601 | 1601 | |
@@ -1625,7 +1625,7 @@ discard block |
||
| 1625 | 1625 | { |
| 1626 | 1626 | $actual = realpath($path); |
| 1627 | 1627 | |
| 1628 | - if($actual === false) |
|
| 1628 | + if ($actual === false) |
|
| 1629 | 1629 | { |
| 1630 | 1630 | throw new FileHelper_Exception( |
| 1631 | 1631 | 'Folder does not exist', |
@@ -1637,7 +1637,7 @@ discard block |
||
| 1637 | 1637 | ); |
| 1638 | 1638 | } |
| 1639 | 1639 | |
| 1640 | - if(is_dir($path)) |
|
| 1640 | + if (is_dir($path)) |
|
| 1641 | 1641 | { |
| 1642 | 1642 | return self::normalizePath($actual); |
| 1643 | 1643 | } |
@@ -1659,7 +1659,7 @@ discard block |
||
| 1659 | 1659 | * @param string[] $paths |
| 1660 | 1660 | * @return FileHelper_PathsReducer |
| 1661 | 1661 | */ |
| 1662 | - public static function createPathsReducer(array $paths=array()) : FileHelper_PathsReducer |
|
| 1662 | + public static function createPathsReducer(array $paths = array()) : FileHelper_PathsReducer |
|
| 1663 | 1663 | { |
| 1664 | 1664 | return new FileHelper_PathsReducer(); |
| 1665 | 1665 | } |
@@ -55,12 +55,12 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | private function validate() : bool |
| 57 | 57 | { |
| 58 | - if($this->a->getUnits() !== $this->b->getUnits()) |
|
| 58 | + if ($this->a->getUnits() !== $this->b->getUnits()) |
|
| 59 | 59 | { |
| 60 | 60 | return false; |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - if($this->a->isEmpty() || $this->b->isEmpty()) |
|
| 63 | + if ($this->a->isEmpty() || $this->b->isEmpty()) |
|
| 64 | 64 | { |
| 65 | 65 | return false; |
| 66 | 66 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | public function isBiggerThan() : bool |
| 72 | 72 | { |
| 73 | - if($this->valid === false) |
|
| 73 | + if ($this->valid === false) |
|
| 74 | 74 | { |
| 75 | 75 | return false; |
| 76 | 76 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | public function isBiggerEqual() : bool |
| 82 | 82 | { |
| 83 | - if($this->valid === false) |
|
| 83 | + if ($this->valid === false) |
|
| 84 | 84 | { |
| 85 | 85 | return false; |
| 86 | 86 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | public function isSmallerThan() : bool |
| 92 | 92 | { |
| 93 | - if($this->valid === false) |
|
| 93 | + if ($this->valid === false) |
|
| 94 | 94 | { |
| 95 | 95 | return false; |
| 96 | 96 | } |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | |
| 101 | 101 | public function isSmallerEqual() : bool |
| 102 | 102 | { |
| 103 | - if($this->valid === false) |
|
| 103 | + if ($this->valid === false) |
|
| 104 | 104 | { |
| 105 | 105 | return false; |
| 106 | 106 | } |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | |
| 111 | 111 | public function isEqual() : bool |
| 112 | 112 | { |
| 113 | - if($this->valid === false) |
|
| 113 | + if ($this->valid === false) |
|
| 114 | 114 | { |
| 115 | 115 | return false; |
| 116 | 116 | } |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | { |
| 15 | 15 | $number = parseNumber($value, true); |
| 16 | 16 | |
| 17 | - if($number->getNumber() === $this->getNumber() && $number->hasUnits() === $this->hasUnits()) |
|
| 17 | + if ($number->getNumber() === $this->getNumber() && $number->hasUnits() === $this->hasUnits()) |
|
| 18 | 18 | { |
| 19 | 19 | return $this; |
| 20 | 20 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | { |
| 31 | 31 | $number = parseNumber($number, true); |
| 32 | 32 | |
| 33 | - if($number->getNumber() === $this->getNumber() && $number->getUnits() === $this->getUnits()) |
|
| 33 | + if ($number->getNumber() === $this->getNumber() && $number->getUnits() === $this->getUnits()) |
|
| 34 | 34 | { |
| 35 | 35 | return $this; |
| 36 | 36 | } |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | $number = parseNumber($this, true); |
| 48 | 48 | $number->add($value); |
| 49 | 49 | |
| 50 | - if($number->getNumber() === $this->getNumber()) |
|
| 50 | + if ($number->getNumber() === $this->getNumber()) |
|
| 51 | 51 | { |
| 52 | 52 | return $this; |
| 53 | 53 | } |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | $number = parseNumber($this, true); |
| 65 | 65 | $number->subtract($value); |
| 66 | 66 | |
| 67 | - if($number->getNumber() === $this->getNumber()) |
|
| 67 | + if ($number->getNumber() === $this->getNumber()) |
|
| 68 | 68 | { |
| 69 | 69 | return $this; |
| 70 | 70 | } |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $number = parseNumber($this, true); |
| 82 | 82 | $number->subtractPercent($percent); |
| 83 | 83 | |
| 84 | - if($number->getNumber() === $this->getNumber()) |
|
| 84 | + if ($number->getNumber() === $this->getNumber()) |
|
| 85 | 85 | { |
| 86 | 86 | return $this; |
| 87 | 87 | } |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | $number = parseNumber($this, true); |
| 99 | 99 | $number->addPercent($percent); |
| 100 | 100 | |
| 101 | - if($number->getNumber() === $this->getNumber()) |
|
| 101 | + if ($number->getNumber() === $this->getNumber()) |
|
| 102 | 102 | { |
| 103 | 103 | return $this; |
| 104 | 104 | } |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | $number = parseNumber($this, true); |
| 115 | 115 | $number->floorEven(); |
| 116 | 116 | |
| 117 | - if($number->getNumber() === $this->getNumber()) |
|
| 117 | + if ($number->getNumber() === $this->getNumber()) |
|
| 118 | 118 | { |
| 119 | 119 | return $this; |
| 120 | 120 | } |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | $number = parseNumber($this, true); |
| 131 | 131 | $number->ceilEven(); |
| 132 | 132 | |
| 133 | - if($number->getNumber() === $this->getNumber()) |
|
| 133 | + if ($number->getNumber() === $this->getNumber()) |
|
| 134 | 134 | { |
| 135 | 135 | return $this; |
| 136 | 136 | } |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | */ |
| 131 | 131 | protected function _setValue($value) |
| 132 | 132 | { |
| 133 | - if($value instanceof NumberInfo) { |
|
| 133 | + if ($value instanceof NumberInfo) { |
|
| 134 | 134 | $value = $value->getValue(); |
| 135 | 135 | } |
| 136 | 136 | |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | */ |
| 171 | 171 | public function isPositive() : bool |
| 172 | 172 | { |
| 173 | - if($this->isEmpty()) |
|
| 173 | + if ($this->isEmpty()) |
|
| 174 | 174 | { |
| 175 | 175 | return false; |
| 176 | 176 | } |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | */ |
| 186 | 186 | public function isZero() : bool |
| 187 | 187 | { |
| 188 | - if($this->isEmpty()) |
|
| 188 | + if ($this->isEmpty()) |
|
| 189 | 189 | { |
| 190 | 190 | return false; |
| 191 | 191 | } |
@@ -231,23 +231,23 @@ discard block |
||
| 231 | 231 | { |
| 232 | 232 | // Append the units if the value is a number, |
| 233 | 233 | // so they can be inherited. |
| 234 | - if($this->hasUnits() && is_numeric($number)) |
|
| 234 | + if ($this->hasUnits() && is_numeric($number)) |
|
| 235 | 235 | { |
| 236 | 236 | $number .= $this->getUnits(); |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | $new = parseNumber($number); |
| 240 | 240 | |
| 241 | - if($new->isEmpty()) |
|
| 241 | + if ($new->isEmpty()) |
|
| 242 | 242 | { |
| 243 | 243 | return $this; |
| 244 | 244 | } |
| 245 | 245 | |
| 246 | - if($new->getUnits() === $this->getUnits()) |
|
| 246 | + if ($new->getUnits() === $this->getUnits()) |
|
| 247 | 247 | { |
| 248 | 248 | $value = $new->getNumber(); |
| 249 | 249 | |
| 250 | - if($this->hasUnits()) { |
|
| 250 | + if ($this->hasUnits()) { |
|
| 251 | 251 | $value .= $this->getUnits(); |
| 252 | 252 | } |
| 253 | 253 | |
@@ -289,7 +289,7 @@ discard block |
||
| 289 | 289 | { |
| 290 | 290 | $number = (float)$this->info['number']; |
| 291 | 291 | |
| 292 | - if($this->hasDecimals()) |
|
| 292 | + if ($this->hasDecimals()) |
|
| 293 | 293 | { |
| 294 | 294 | return $number; |
| 295 | 295 | } |
@@ -325,11 +325,11 @@ discard block |
||
| 325 | 325 | */ |
| 326 | 326 | public function getUnits() : string |
| 327 | 327 | { |
| 328 | - if($this->isEmpty()) { |
|
| 328 | + if ($this->isEmpty()) { |
|
| 329 | 329 | return ''; |
| 330 | 330 | } |
| 331 | 331 | |
| 332 | - if(!$this->hasUnits()) { |
|
| 332 | + if (!$this->hasUnits()) { |
|
| 333 | 333 | return 'px'; |
| 334 | 334 | } |
| 335 | 335 | |
@@ -363,15 +363,15 @@ discard block |
||
| 363 | 363 | */ |
| 364 | 364 | public function toAttribute() : string |
| 365 | 365 | { |
| 366 | - if($this->isEmpty()) { |
|
| 366 | + if ($this->isEmpty()) { |
|
| 367 | 367 | return ''; |
| 368 | 368 | } |
| 369 | 369 | |
| 370 | - if($this->isZero()) { |
|
| 370 | + if ($this->isZero()) { |
|
| 371 | 371 | return '0'; |
| 372 | 372 | } |
| 373 | 373 | |
| 374 | - if($this->isPercent()) { |
|
| 374 | + if ($this->isPercent()) { |
|
| 375 | 375 | return $this->getNumber().$this->getUnits(); |
| 376 | 376 | } |
| 377 | 377 | |
@@ -384,11 +384,11 @@ discard block |
||
| 384 | 384 | */ |
| 385 | 385 | public function toCSS() : string |
| 386 | 386 | { |
| 387 | - if($this->isEmpty()) { |
|
| 387 | + if ($this->isEmpty()) { |
|
| 388 | 388 | return ''; |
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - if($this->isZero()) { |
|
| 391 | + if ($this->isZero()) { |
|
| 392 | 392 | return '0'; |
| 393 | 393 | } |
| 394 | 394 | |
@@ -397,7 +397,7 @@ discard block |
||
| 397 | 397 | |
| 398 | 398 | public function __toString() |
| 399 | 399 | { |
| 400 | - if($this->isEmpty()) { |
|
| 400 | + if ($this->isEmpty()) { |
|
| 401 | 401 | return ''; |
| 402 | 402 | } |
| 403 | 403 | |
@@ -503,7 +503,7 @@ discard block |
||
| 503 | 503 | */ |
| 504 | 504 | public function add($value) |
| 505 | 505 | { |
| 506 | - if($this->isEmpty()) |
|
| 506 | + if ($this->isEmpty()) |
|
| 507 | 507 | { |
| 508 | 508 | $this->setValue($value); |
| 509 | 509 | return $this; |
@@ -511,11 +511,11 @@ discard block |
||
| 511 | 511 | |
| 512 | 512 | $number = parseNumber($value); |
| 513 | 513 | |
| 514 | - if($number->getUnits() === $this->getUnits() || !$number->hasUnits()) |
|
| 514 | + if ($number->getUnits() === $this->getUnits() || !$number->hasUnits()) |
|
| 515 | 515 | { |
| 516 | 516 | $new = $this->getNumber() + $number->getNumber(); |
| 517 | 517 | |
| 518 | - if($this->hasUnits()) |
|
| 518 | + if ($this->hasUnits()) |
|
| 519 | 519 | { |
| 520 | 520 | $new .= $this->getUnits(); |
| 521 | 521 | } |
@@ -536,7 +536,7 @@ discard block |
||
| 536 | 536 | */ |
| 537 | 537 | public function subtract($value) |
| 538 | 538 | { |
| 539 | - if($this->isEmpty()) |
|
| 539 | + if ($this->isEmpty()) |
|
| 540 | 540 | { |
| 541 | 541 | $this->setValue($value); |
| 542 | 542 | return $this; |
@@ -544,11 +544,11 @@ discard block |
||
| 544 | 544 | |
| 545 | 545 | $number = parseNumber($value); |
| 546 | 546 | |
| 547 | - if($number->getUnits() == $this->getUnits() || !$number->hasUnits()) |
|
| 547 | + if ($number->getUnits() == $this->getUnits() || !$number->hasUnits()) |
|
| 548 | 548 | { |
| 549 | 549 | $new = $this->getNumber() - $number->getNumber(); |
| 550 | 550 | |
| 551 | - if($this->hasUnits()) |
|
| 551 | + if ($this->hasUnits()) |
|
| 552 | 552 | { |
| 553 | 553 | $new .= $this->getUnits(); |
| 554 | 554 | } |
@@ -588,13 +588,13 @@ discard block |
||
| 588 | 588 | */ |
| 589 | 589 | protected function percentOperation(string $operation, $percent) |
| 590 | 590 | { |
| 591 | - if($this->isZeroOrEmpty()) { |
|
| 591 | + if ($this->isZeroOrEmpty()) { |
|
| 592 | 592 | return $this; |
| 593 | 593 | } |
| 594 | 594 | |
| 595 | 595 | $percent = parseNumber($percent); |
| 596 | 596 | |
| 597 | - if($percent->hasUnits() && !$percent->isPercent()) |
|
| 597 | + if ($percent->hasUnits() && !$percent->isPercent()) |
|
| 598 | 598 | { |
| 599 | 599 | return $this; |
| 600 | 600 | } |
@@ -602,18 +602,18 @@ discard block |
||
| 602 | 602 | $number = $this->getNumber(); |
| 603 | 603 | $value = $number * $percent->getNumber() / 100; |
| 604 | 604 | |
| 605 | - if($operation == '-') { |
|
| 605 | + if ($operation == '-') { |
|
| 606 | 606 | $number = $number - $value; |
| 607 | 607 | } else { |
| 608 | 608 | $number = $number + $value; |
| 609 | 609 | } |
| 610 | 610 | |
| 611 | - if($this->isUnitInteger()) |
|
| 611 | + if ($this->isUnitInteger()) |
|
| 612 | 612 | { |
| 613 | 613 | $number = intval($number); |
| 614 | 614 | } |
| 615 | 615 | |
| 616 | - if($this->hasUnits()) |
|
| 616 | + if ($this->hasUnits()) |
|
| 617 | 617 | { |
| 618 | 618 | $number .= $this->getUnits(); |
| 619 | 619 | } |
@@ -627,7 +627,7 @@ discard block |
||
| 627 | 627 | { |
| 628 | 628 | $units = $this->getUnits(); |
| 629 | 629 | |
| 630 | - if(isset($this->knownUnits[$units])) |
|
| 630 | + if (isset($this->knownUnits[$units])) |
|
| 631 | 631 | { |
| 632 | 632 | return !$this->knownUnits[$units]; |
| 633 | 633 | } |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | { |
| 640 | 640 | $units = $this->getUnits(); |
| 641 | 641 | |
| 642 | - if(isset($this->knownUnits[$units])) |
|
| 642 | + if (isset($this->knownUnits[$units])) |
|
| 643 | 643 | { |
| 644 | 644 | return $this->knownUnits[$units]; |
| 645 | 645 | } |
@@ -678,7 +678,7 @@ discard block |
||
| 678 | 678 | |
| 679 | 679 | $key = $this->createValueKey($value); |
| 680 | 680 | |
| 681 | - if(array_key_exists($key, $cache)) { |
|
| 681 | + if (array_key_exists($key, $cache)) { |
|
| 682 | 682 | return $cache[$key]; |
| 683 | 683 | } |
| 684 | 684 | |
@@ -688,13 +688,13 @@ discard block |
||
| 688 | 688 | 'number' => null |
| 689 | 689 | ); |
| 690 | 690 | |
| 691 | - if($key === '_EMPTY_') |
|
| 691 | + if ($key === '_EMPTY_') |
|
| 692 | 692 | { |
| 693 | 693 | $cache[$key]['empty'] = true; |
| 694 | 694 | return $cache[$key]; |
| 695 | 695 | } |
| 696 | 696 | |
| 697 | - if($value === 0 || $value === '0') |
|
| 697 | + if ($value === 0 || $value === '0') |
|
| 698 | 698 | { |
| 699 | 699 | $cache[$key]['number'] = 0; |
| 700 | 700 | $cache[$key] = $this->filterInfo($cache[$key]); |
@@ -703,20 +703,20 @@ discard block |
||
| 703 | 703 | |
| 704 | 704 | $test = trim((string)$value); |
| 705 | 705 | |
| 706 | - if($test === '') |
|
| 706 | + if ($test === '') |
|
| 707 | 707 | { |
| 708 | 708 | $cache[$key]['empty'] = true; |
| 709 | 709 | return $cache[$key]; |
| 710 | 710 | } |
| 711 | 711 | |
| 712 | 712 | // replace comma notation (which is only possible if it's a string) |
| 713 | - if(is_string($value)) |
|
| 713 | + if (is_string($value)) |
|
| 714 | 714 | { |
| 715 | 715 | $test = $this->preProcess($test, $cache, $value); |
| 716 | 716 | } |
| 717 | 717 | |
| 718 | 718 | // convert to a number if it's numeric |
| 719 | - if(is_numeric($test)) |
|
| 719 | + if (is_numeric($test)) |
|
| 720 | 720 | { |
| 721 | 721 | $cache[$key]['number'] = (float)$test * 1; |
| 722 | 722 | $cache[$key] = $this->filterInfo($cache[$key]); |
@@ -742,19 +742,19 @@ discard block |
||
| 742 | 742 | $empty = false; |
| 743 | 743 | |
| 744 | 744 | $found = $this->findUnits($test); |
| 745 | - if($found !== null) |
|
| 745 | + if ($found !== null) |
|
| 746 | 746 | { |
| 747 | 747 | $number = $found['number']; |
| 748 | 748 | $units = $found['units']; |
| 749 | 749 | } |
| 750 | 750 | |
| 751 | 751 | // the filters have to restore the value |
| 752 | - if($this->postProcess) |
|
| 752 | + if ($this->postProcess) |
|
| 753 | 753 | { |
| 754 | 754 | $number = $this->postProcess($number, $test); |
| 755 | 755 | } |
| 756 | 756 | // empty number |
| 757 | - else if($number === '' || $number === null || is_bool($number)) |
|
| 757 | + else if ($number === '' || $number === null || is_bool($number)) |
|
| 758 | 758 | { |
| 759 | 759 | $number = null; |
| 760 | 760 | $empty = true; |
@@ -765,7 +765,7 @@ discard block |
||
| 765 | 765 | $number = trim($number); |
| 766 | 766 | |
| 767 | 767 | // may be an arbitrary string in some cases |
| 768 | - if(!is_numeric($number)) |
|
| 768 | + if (!is_numeric($number)) |
|
| 769 | 769 | { |
| 770 | 770 | $number = null; |
| 771 | 771 | $empty = true; |
@@ -797,17 +797,17 @@ discard block |
||
| 797 | 797 | $vlength = strlen($value); |
| 798 | 798 | $names = array_keys($this->knownUnits); |
| 799 | 799 | |
| 800 | - foreach($names as $unit) |
|
| 800 | + foreach ($names as $unit) |
|
| 801 | 801 | { |
| 802 | 802 | $ulength = strlen($unit); |
| 803 | - $start = $vlength-$ulength; |
|
| 804 | - if($start < 0) { |
|
| 803 | + $start = $vlength - $ulength; |
|
| 804 | + if ($start < 0) { |
|
| 805 | 805 | continue; |
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | $search = substr($value, $start, $ulength); |
| 809 | 809 | |
| 810 | - if($search==$unit) |
|
| 810 | + if ($search == $unit) |
|
| 811 | 811 | { |
| 812 | 812 | return array( |
| 813 | 813 | 'units' => $unit, |
@@ -827,7 +827,7 @@ discard block |
||
| 827 | 827 | */ |
| 828 | 828 | private function createValueKey($value) : string |
| 829 | 829 | { |
| 830 | - if(!is_string($value) && !is_numeric($value)) |
|
| 830 | + if (!is_string($value) && !is_numeric($value)) |
|
| 831 | 831 | { |
| 832 | 832 | return '_EMPTY_'; |
| 833 | 833 | } |
@@ -891,12 +891,12 @@ discard block |
||
| 891 | 891 | protected function filterInfo(array $info) : array |
| 892 | 892 | { |
| 893 | 893 | $useUnits = 'px'; |
| 894 | - if($info['units'] !== null) { |
|
| 894 | + if ($info['units'] !== null) { |
|
| 895 | 895 | $useUnits = $info['units']; |
| 896 | 896 | } |
| 897 | 897 | |
| 898 | 898 | // the units are non-decimal: convert decimal values |
| 899 | - if($this->knownUnits[$useUnits] === false && !$info['empty'] && is_numeric($info['number'])) |
|
| 899 | + if ($this->knownUnits[$useUnits] === false && !$info['empty'] && is_numeric($info['number'])) |
|
| 900 | 900 | { |
| 901 | 901 | $info['number'] = intval($info['number']); |
| 902 | 902 | } |
@@ -922,7 +922,7 @@ discard block |
||
| 922 | 922 | { |
| 923 | 923 | $number = floor($this->getNumber()); |
| 924 | 924 | |
| 925 | - if($number % 2 == 1) $number--; |
|
| 925 | + if ($number % 2 == 1) $number--; |
|
| 926 | 926 | |
| 927 | 927 | return $this->setNumber($number); |
| 928 | 928 | } |
@@ -938,7 +938,7 @@ discard block |
||
| 938 | 938 | { |
| 939 | 939 | $number = ceil($this->getNumber()); |
| 940 | 940 | |
| 941 | - if($number % 2 == 1) $number++; |
|
| 941 | + if ($number % 2 == 1) $number++; |
|
| 942 | 942 | |
| 943 | 943 | return $this->setNumber($number); |
| 944 | 944 | } |