@@ -109,7 +109,7 @@ |
||
| 109 | 109 | */ |
| 110 | 110 | protected static function resolveFacadeInstance($name) |
| 111 | 111 | { |
| 112 | - if (! isset(static::$resolvedInstance[$name]) && ! isset(static::$app, static::$app[$name])) { |
|
| 112 | + if (!isset(static::$resolvedInstance[$name]) && !isset(static::$app, static::$app[$name])) { |
|
| 113 | 113 | $class = static::DEFAULT_FACADE; |
| 114 | 114 | |
| 115 | 115 | static::swap(new $class); |
@@ -54,8 +54,8 @@ discard block |
||
| 54 | 54 | public static function fakeExcept($eventsToAllow) |
| 55 | 55 | { |
| 56 | 56 | return static::fake([ |
| 57 | - function ($eventName) use ($eventsToAllow) { |
|
| 58 | - return ! in_array($eventName, (array) $eventsToAllow); |
|
| 57 | + function($eventName) use ($eventsToAllow) { |
|
| 58 | + return !in_array($eventName, (array) $eventsToAllow); |
|
| 59 | 59 | }, |
| 60 | 60 | ]); |
| 61 | 61 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | static::fake($eventsToFake); |
| 75 | 75 | |
| 76 | - return tap($callable(), function () use ($originalDispatcher) { |
|
| 76 | + return tap($callable(), function() use ($originalDispatcher) { |
|
| 77 | 77 | static::swap($originalDispatcher); |
| 78 | 78 | |
| 79 | 79 | Model::setEventDispatcher($originalDispatcher); |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | static::fakeExcept($eventsToAllow); |
| 96 | 96 | |
| 97 | - return tap($callable(), function () use ($originalDispatcher) { |
|
| 97 | + return tap($callable(), function() use ($originalDispatcher) { |
|
| 98 | 98 | static::swap($originalDispatcher); |
| 99 | 99 | |
| 100 | 100 | Model::setEventDispatcher($originalDispatcher); |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | public static function containsAll($haystack, array $needles) |
| 213 | 213 | { |
| 214 | 214 | foreach ($needles as $needle) { |
| 215 | - if (! static::contains($haystack, $needle)) { |
|
| 215 | + if (!static::contains($haystack, $needle)) { |
|
| 216 | 216 | return false; |
| 217 | 217 | } |
| 218 | 218 | } |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | */ |
| 317 | 317 | public static function isUuid($value) |
| 318 | 318 | { |
| 319 | - if (! is_string($value)) { |
|
| 319 | + if (!is_string($value)) { |
|
| 320 | 320 | return false; |
| 321 | 321 | } |
| 322 | 322 | |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | { |
| 391 | 391 | preg_match('/^\s*+(?:\S++\s*+){1,'.$words.'}/u', $value, $matches); |
| 392 | 392 | |
| 393 | - if (! isset($matches[0]) || static::length($value) === static::length($matches[0])) { |
|
| 393 | + if (!isset($matches[0]) || static::length($value) === static::length($matches[0])) { |
|
| 394 | 394 | return $value; |
| 395 | 395 | } |
| 396 | 396 | |
@@ -462,7 +462,7 @@ discard block |
||
| 462 | 462 | { |
| 463 | 463 | preg_match($pattern, $subject, $matches); |
| 464 | 464 | |
| 465 | - if (! $matches) { |
|
| 465 | + if (!$matches) { |
|
| 466 | 466 | return ''; |
| 467 | 467 | } |
| 468 | 468 | |
@@ -817,7 +817,7 @@ discard block |
||
| 817 | 817 | return static::$snakeCache[$key][$delimiter]; |
| 818 | 818 | } |
| 819 | 819 | |
| 820 | - if (! ctype_lower($value)) { |
|
| 820 | + if (!ctype_lower($value)) { |
|
| 821 | 821 | $value = preg_replace('/\s+/u', '', ucwords($value)); |
| 822 | 822 | |
| 823 | 823 | $value = static::lower(preg_replace('/(.)(?=[A-Z])/u', '$1'.$delimiter, $value)); |
@@ -860,7 +860,7 @@ discard block |
||
| 860 | 860 | |
| 861 | 861 | $words = explode(' ', static::replace(['-', '_'], ' ', $value)); |
| 862 | 862 | |
| 863 | - $studlyWords = array_map(function ($word) { |
|
| 863 | + $studlyWords = array_map(function($word) { |
|
| 864 | 864 | return static::ucfirst($word); |
| 865 | 865 | }, $words); |
| 866 | 866 | |
@@ -891,7 +891,7 @@ discard block |
||
| 891 | 891 | */ |
| 892 | 892 | public static function substrCount($haystack, $needle, $offset = 0, $length = null) |
| 893 | 893 | { |
| 894 | - if (! is_null($length)) { |
|
| 894 | + if (!is_null($length)) { |
|
| 895 | 895 | return substr_count($haystack, $needle, $offset, $length); |
| 896 | 896 | } else { |
| 897 | 897 | return substr_count($haystack, $needle, $offset); |
@@ -203,11 +203,11 @@ discard block |
||
| 203 | 203 | * @param array $config |
| 204 | 204 | * @param array $default_config |
| 205 | 205 | */ |
| 206 | - private function setAccountConfig($key, $config, $default_config){ |
|
| 206 | + private function setAccountConfig($key, $config, $default_config) { |
|
| 207 | 207 | $value = $this->default_account_config[$key]; |
| 208 | - if(isset($config[$key])) { |
|
| 208 | + if (isset($config[$key])) { |
|
| 209 | 209 | $value = $config[$key]; |
| 210 | - }elseif(isset($default_config[$key])) { |
|
| 210 | + }elseif (isset($default_config[$key])) { |
|
| 211 | 211 | $value = $default_config[$key]; |
| 212 | 212 | } |
| 213 | 213 | $this->$key = $value; |
@@ -219,8 +219,8 @@ discard block |
||
| 219 | 219 | */ |
| 220 | 220 | protected function setEventsFromConfig($config) { |
| 221 | 221 | $this->events = ClientManager::get("events"); |
| 222 | - if(isset($config['events'])){ |
|
| 223 | - foreach($config['events'] as $section => $events) { |
|
| 222 | + if (isset($config['events'])) { |
|
| 223 | + foreach ($config['events'] as $section => $events) { |
|
| 224 | 224 | $this->events[$section] = array_merge($this->events[$section], $events); |
| 225 | 225 | } |
| 226 | 226 | } |
@@ -233,45 +233,45 @@ discard block |
||
| 233 | 233 | * @throws MaskNotFoundException |
| 234 | 234 | */ |
| 235 | 235 | protected function setMaskFromConfig($config) { |
| 236 | - $default_config = ClientManager::get("masks"); |
|
| 236 | + $default_config = ClientManager::get("masks"); |
|
| 237 | 237 | |
| 238 | - if(isset($config['masks'])){ |
|
| 239 | - if(isset($config['masks']['message'])) { |
|
| 240 | - if(class_exists($config['masks']['message'])) { |
|
| 238 | + if (isset($config['masks'])) { |
|
| 239 | + if (isset($config['masks']['message'])) { |
|
| 240 | + if (class_exists($config['masks']['message'])) { |
|
| 241 | 241 | $this->default_message_mask = $config['masks']['message']; |
| 242 | - }else{ |
|
| 242 | + } else { |
|
| 243 | 243 | throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['message']); |
| 244 | 244 | } |
| 245 | - }else{ |
|
| 246 | - if(class_exists($default_config['message'])) { |
|
| 245 | + } else { |
|
| 246 | + if (class_exists($default_config['message'])) { |
|
| 247 | 247 | $this->default_message_mask = $default_config['message']; |
| 248 | - }else{ |
|
| 248 | + } else { |
|
| 249 | 249 | throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']); |
| 250 | 250 | } |
| 251 | 251 | } |
| 252 | - if(isset($config['masks']['attachment'])) { |
|
| 253 | - if(class_exists($config['masks']['attachment'])) { |
|
| 252 | + if (isset($config['masks']['attachment'])) { |
|
| 253 | + if (class_exists($config['masks']['attachment'])) { |
|
| 254 | 254 | $this->default_attachment_mask = $config['masks']['attachment']; |
| 255 | - }else{ |
|
| 255 | + } else { |
|
| 256 | 256 | throw new MaskNotFoundException("Unknown mask provided: ".$config['masks']['attachment']); |
| 257 | 257 | } |
| 258 | - }else{ |
|
| 259 | - if(class_exists($default_config['attachment'])) { |
|
| 258 | + } else { |
|
| 259 | + if (class_exists($default_config['attachment'])) { |
|
| 260 | 260 | $this->default_attachment_mask = $default_config['attachment']; |
| 261 | - }else{ |
|
| 261 | + } else { |
|
| 262 | 262 | throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']); |
| 263 | 263 | } |
| 264 | 264 | } |
| 265 | - }else{ |
|
| 266 | - if(class_exists($default_config['message'])) { |
|
| 265 | + } else { |
|
| 266 | + if (class_exists($default_config['message'])) { |
|
| 267 | 267 | $this->default_message_mask = $default_config['message']; |
| 268 | - }else{ |
|
| 268 | + } else { |
|
| 269 | 269 | throw new MaskNotFoundException("Unknown mask provided: ".$default_config['message']); |
| 270 | 270 | } |
| 271 | 271 | |
| 272 | - if(class_exists($default_config['attachment'])) { |
|
| 272 | + if (class_exists($default_config['attachment'])) { |
|
| 273 | 273 | $this->default_attachment_mask = $default_config['attachment']; |
| 274 | - }else{ |
|
| 274 | + } else { |
|
| 275 | 275 | throw new MaskNotFoundException("Unknown mask provided: ".$default_config['attachment']); |
| 276 | 276 | } |
| 277 | 277 | } |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | $this->connection = new ImapProtocol($this->validate_cert, $this->encryption); |
| 336 | 336 | $this->connection->setConnectionTimeout($this->timeout); |
| 337 | 337 | $this->connection->setProxy($this->proxy); |
| 338 | - }else{ |
|
| 338 | + } else { |
|
| 339 | 339 | if (extension_loaded('imap') === false) { |
| 340 | 340 | throw new ConnectionFailedException("connection setup failed - no imap function", 0, new ProtocolNotSupportedException($protocol." is an unsupported protocol")); |
| 341 | 341 | } |
@@ -409,7 +409,7 @@ discard block |
||
| 409 | 409 | |
| 410 | 410 | // Set delimiter to false to force selection via getFolderByName (maybe useful for uncommon folder names) |
| 411 | 411 | $delimiter = is_null($delimiter) ? ClientManager::get('options.delimiter', "/") : $delimiter; |
| 412 | - if (strpos($folder_name, (string)$delimiter) !== false) { |
|
| 412 | + if (strpos($folder_name, (string) $delimiter) !== false) { |
|
| 413 | 413 | return $this->getFolderByPath($folder_name); |
| 414 | 414 | } |
| 415 | 415 | |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | $pattern = $parent_folder.($hierarchical ? '%' : '*'); |
| 462 | 462 | $items = $this->connection->folders('', $pattern); |
| 463 | 463 | |
| 464 | - if(is_array($items)){ |
|
| 464 | + if (is_array($items)) { |
|
| 465 | 465 | foreach ($items as $folder_name => $item) { |
| 466 | 466 | $folder = new Folder($this, $folder_name, $item["delimiter"], $item["flags"]); |
| 467 | 467 | |
@@ -476,7 +476,7 @@ discard block |
||
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | return $folders; |
| 479 | - }else{ |
|
| 479 | + } else { |
|
| 480 | 480 | throw new FolderFetchingException("failed to fetch any folders"); |
| 481 | 481 | } |
| 482 | 482 | } |
@@ -514,10 +514,10 @@ discard block |
||
| 514 | 514 | $this->checkConnection(); |
| 515 | 515 | $status = $this->connection->createFolder($folder); |
| 516 | 516 | |
| 517 | - if($expunge) $this->expunge(); |
|
| 517 | + if ($expunge) $this->expunge(); |
|
| 518 | 518 | |
| 519 | 519 | $folder = $this->getFolder($folder); |
| 520 | - if($status && $folder) { |
|
| 520 | + if ($status && $folder) { |
|
| 521 | 521 | $event = $this->getEvent("folder", "new"); |
| 522 | 522 | $event::dispatch($folder); |
| 523 | 523 | } |
@@ -543,7 +543,7 @@ discard block |
||
| 543 | 543 | * |
| 544 | 544 | * @return string |
| 545 | 545 | */ |
| 546 | - public function getFolderPath(){ |
|
| 546 | + public function getFolderPath() { |
|
| 547 | 547 | return $this->active_folder; |
| 548 | 548 | } |
| 549 | 549 | |
@@ -601,7 +601,7 @@ discard block |
||
| 601 | 601 | * @return int |
| 602 | 602 | * @throws ConnectionFailedException |
| 603 | 603 | */ |
| 604 | - public function getTimeout(){ |
|
| 604 | + public function getTimeout() { |
|
| 605 | 605 | $this->checkConnection(); |
| 606 | 606 | return $this->connection->getConnectionTimeout(); |
| 607 | 607 | } |
@@ -611,7 +611,7 @@ discard block |
||
| 611 | 611 | * |
| 612 | 612 | * @return string |
| 613 | 613 | */ |
| 614 | - public function getDefaultMessageMask(){ |
|
| 614 | + public function getDefaultMessageMask() { |
|
| 615 | 615 | return $this->default_message_mask; |
| 616 | 616 | } |
| 617 | 617 | |
@@ -621,7 +621,7 @@ discard block |
||
| 621 | 621 | * |
| 622 | 622 | * @return array |
| 623 | 623 | */ |
| 624 | - public function getDefaultEvents($section){ |
|
| 624 | + public function getDefaultEvents($section) { |
|
| 625 | 625 | return $this->events[$section]; |
| 626 | 626 | } |
| 627 | 627 | |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | * @throws MaskNotFoundException |
| 634 | 634 | */ |
| 635 | 635 | public function setDefaultMessageMask($mask) { |
| 636 | - if(class_exists($mask)) { |
|
| 636 | + if (class_exists($mask)) { |
|
| 637 | 637 | $this->default_message_mask = $mask; |
| 638 | 638 | |
| 639 | 639 | return $this; |
@@ -647,7 +647,7 @@ discard block |
||
| 647 | 647 | * |
| 648 | 648 | * @return string |
| 649 | 649 | */ |
| 650 | - public function getDefaultAttachmentMask(){ |
|
| 650 | + public function getDefaultAttachmentMask() { |
|
| 651 | 651 | return $this->default_attachment_mask; |
| 652 | 652 | } |
| 653 | 653 | |
@@ -659,7 +659,7 @@ discard block |
||
| 659 | 659 | * @throws MaskNotFoundException |
| 660 | 660 | */ |
| 661 | 661 | public function setDefaultAttachmentMask($mask) { |
| 662 | - if(class_exists($mask)) { |
|
| 662 | + if (class_exists($mask)) { |
|
| 663 | 663 | $this->default_attachment_mask = $mask; |
| 664 | 664 | |
| 665 | 665 | return $this; |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | |
| 123 | 123 | $this->setDelimiter($delimiter); |
| 124 | 124 | $this->path = $folder_name; |
| 125 | - $this->full_name = $this->decodeName($folder_name); |
|
| 125 | + $this->full_name = $this->decodeName($folder_name); |
|
| 126 | 126 | $this->name = $this->getSimpleName($this->delimiter, $this->full_name); |
| 127 | 127 | |
| 128 | 128 | $this->parseAttributes($attributes); |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | * @throws Exceptions\ConnectionFailedException |
| 137 | 137 | * @throws Exceptions\RuntimeException |
| 138 | 138 | */ |
| 139 | - public function query($charset = 'UTF-8'){ |
|
| 139 | + public function query($charset = 'UTF-8') { |
|
| 140 | 140 | $this->getClient()->checkConnection(); |
| 141 | 141 | $this->getClient()->openFolder($this->path); |
| 142 | 142 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | * @throws Exceptions\ConnectionFailedException |
| 149 | 149 | * @throws Exceptions\RuntimeException |
| 150 | 150 | */ |
| 151 | - public function search($charset = 'UTF-8'){ |
|
| 151 | + public function search($charset = 'UTF-8') { |
|
| 152 | 152 | return $this->query($charset); |
| 153 | 153 | } |
| 154 | 154 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @throws Exceptions\ConnectionFailedException |
| 158 | 158 | * @throws Exceptions\RuntimeException |
| 159 | 159 | */ |
| 160 | - public function messages($charset = 'UTF-8'){ |
|
| 160 | + public function messages($charset = 'UTF-8') { |
|
| 161 | 161 | return $this->query($charset); |
| 162 | 162 | } |
| 163 | 163 | |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | public function move($new_name, $expunge = true) { |
| 233 | 233 | $this->client->checkConnection(); |
| 234 | 234 | $status = $this->client->getConnection()->renameFolder($this->full_name, $new_name); |
| 235 | - if($expunge) $this->client->expunge(); |
|
| 235 | + if ($expunge) $this->client->expunge(); |
|
| 236 | 236 | |
| 237 | 237 | $folder = $this->client->getFolder($new_name); |
| 238 | 238 | $event = $this->getEvent("folder", "moved"); |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | * @throws Exceptions\MessageNotFoundException |
| 252 | 252 | * @throws Exceptions\RuntimeException |
| 253 | 253 | */ |
| 254 | - public function overview($sequence = null){ |
|
| 254 | + public function overview($sequence = null) { |
|
| 255 | 255 | $this->client->openFolder($this->path); |
| 256 | 256 | $sequence = $sequence === null ? "1:*" : $sequence; |
| 257 | 257 | $uid = ClientManager::get('options.sequence', IMAP::ST_MSGN) == IMAP::ST_UID; |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | */ |
| 277 | 277 | |
| 278 | 278 | if ($internal_date != null) { |
| 279 | - if ($internal_date instanceof Carbon){ |
|
| 279 | + if ($internal_date instanceof Carbon) { |
|
| 280 | 280 | $internal_date = $internal_date->format('d-M-Y H:i:s O'); |
| 281 | 281 | } |
| 282 | 282 | } |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | */ |
| 311 | 311 | public function delete($expunge = true) { |
| 312 | 312 | $status = $this->client->getConnection()->deleteFolder($this->path); |
| 313 | - if($expunge) $this->client->expunge(); |
|
| 313 | + if ($expunge) $this->client->expunge(); |
|
| 314 | 314 | |
| 315 | 315 | $event = $this->getEvent("folder", "deleted"); |
| 316 | 316 | $event::dispatch($this); |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | try { |
| 372 | 372 | $line = $connection->nextLine(); |
| 373 | 373 | if (($pos = strpos($line, "EXISTS")) !== false) { |
| 374 | - $msgn = (int) substr($line, 2, $pos -2); |
|
| 374 | + $msgn = (int) substr($line, 2, $pos - 2); |
|
| 375 | 375 | $connection->done(); |
| 376 | 376 | |
| 377 | 377 | $this->client->openFolder($this->path, true); |
@@ -384,8 +384,8 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | $connection->idle(); |
| 386 | 386 | } |
| 387 | - }catch (Exceptions\RuntimeException $e) { |
|
| 388 | - if(strpos($e->getMessage(), "connection closed") === false) { |
|
| 387 | + } catch (Exceptions\RuntimeException $e) { |
|
| 388 | + if (strpos($e->getMessage(), "connection closed") === false) { |
|
| 389 | 389 | throw $e; |
| 390 | 390 | } |
| 391 | 391 | if ($auto_reconnect === true) { |
@@ -434,8 +434,8 @@ discard block |
||
| 434 | 434 | * Set the delimiter |
| 435 | 435 | * @param $delimiter |
| 436 | 436 | */ |
| 437 | - public function setDelimiter($delimiter){ |
|
| 438 | - if(in_array($delimiter, [null, '', ' ', false]) === true) { |
|
| 437 | + public function setDelimiter($delimiter) { |
|
| 438 | + if (in_array($delimiter, [null, '', ' ', false]) === true) { |
|
| 439 | 439 | $delimiter = ClientManager::get('options.delimiter', '/'); |
| 440 | 440 | } |
| 441 | 441 | |
@@ -89,16 +89,16 @@ discard block |
||
| 89 | 89 | throw new AuthFailedException($message); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - if(!$this->stream) { |
|
| 92 | + if (!$this->stream) { |
|
| 93 | 93 | $errors = \imap_errors(); |
| 94 | 94 | $message = implode("; ", (is_array($errors) ? $errors : array())); |
| 95 | 95 | throw new AuthFailedException($message); |
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | $errors = \imap_errors(); |
| 99 | - if(is_array($errors)) { |
|
| 99 | + if (is_array($errors)) { |
|
| 100 | 100 | $status = $this->examineFolder(); |
| 101 | - if($status['exists'] !== 0) { |
|
| 101 | + if ($status['exists'] !== 0) { |
|
| 102 | 102 | $message = implode("; ", (is_array($errors) ? $errors : array())); |
| 103 | 103 | throw new RuntimeException($message); |
| 104 | 104 | } |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | if (!$this->cert_validation) { |
| 130 | 130 | $address .= '/novalidate-cert'; |
| 131 | 131 | } |
| 132 | - if (in_array($this->encryption,['tls', 'notls', 'ssl'])) { |
|
| 132 | + if (in_array($this->encryption, ['tls', 'notls', 'ssl'])) { |
|
| 133 | 133 | $address .= '/'.$this->encryption; |
| 134 | 134 | } elseif ($this->encryption === "starttls") { |
| 135 | 135 | $address .= '/tls'; |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * |
| 160 | 160 | * @return bool |
| 161 | 161 | */ |
| 162 | - public function connected(){ |
|
| 162 | + public function connected() { |
|
| 163 | 163 | return boolval($this->stream); |
| 164 | 164 | } |
| 165 | 165 | |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | * |
| 232 | 232 | * @return array |
| 233 | 233 | */ |
| 234 | - public function headers($uids, $rfc = "RFC822", $uid = false){ |
|
| 234 | + public function headers($uids, $rfc = "RFC822", $uid = false) { |
|
| 235 | 235 | $result = []; |
| 236 | 236 | $uids = is_array($uids) ? $uids : [$uids]; |
| 237 | 237 | foreach ($uids as $id) { |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | * |
| 248 | 248 | * @return array |
| 249 | 249 | */ |
| 250 | - public function flags($uids, $uid = false){ |
|
| 250 | + public function flags($uids, $uid = false) { |
|
| 251 | 251 | $result = []; |
| 252 | 252 | $uids = is_array($uids) ? $uids : [$uids]; |
| 253 | 253 | foreach ($uids as $id) { |
@@ -255,8 +255,8 @@ discard block |
||
| 255 | 255 | $flags = []; |
| 256 | 256 | if (is_array($raw_flags) && isset($raw_flags[0])) { |
| 257 | 257 | $raw_flags = (array) $raw_flags[0]; |
| 258 | - foreach($raw_flags as $flag => $value) { |
|
| 259 | - if ($value === 1 && in_array($flag, ["size", "uid", "msgno", "update"]) === false){ |
|
| 258 | + foreach ($raw_flags as $flag => $value) { |
|
| 259 | + if ($value === 1 && in_array($flag, ["size", "uid", "msgno", "update"]) === false) { |
|
| 260 | 260 | $flags[] = "\\".ucfirst($flag); |
| 261 | 261 | } |
| 262 | 262 | } |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | if ($id === null) { |
| 278 | 278 | $overview = $this->overview("1:*"); |
| 279 | 279 | $uids = []; |
| 280 | - foreach($overview as $set){ |
|
| 280 | + foreach ($overview as $set) { |
|
| 281 | 281 | $uids[$set->msgno] = $set->uid; |
| 282 | 282 | } |
| 283 | 283 | return $uids; |
@@ -303,7 +303,7 @@ discard block |
||
| 303 | 303 | * @return array |
| 304 | 304 | */ |
| 305 | 305 | public function overview($sequence, $uid = false) { |
| 306 | - return \imap_fetch_overview($this->stream, $sequence,$uid ? IMAP::FT_UID : IMAP::NIL); |
|
| 306 | + return \imap_fetch_overview($this->stream, $sequence, $uid ? IMAP::FT_UID : IMAP::NIL); |
|
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | /** |
@@ -318,12 +318,12 @@ discard block |
||
| 318 | 318 | $result = []; |
| 319 | 319 | |
| 320 | 320 | $items = \imap_getmailboxes($this->stream, $this->getAddress(), $reference.$folder); |
| 321 | - if(is_array($items)){ |
|
| 321 | + if (is_array($items)) { |
|
| 322 | 322 | foreach ($items as $item) { |
| 323 | 323 | $name = $this->decodeFolderName($item->name); |
| 324 | 324 | $result[$name] = ['delimiter' => $item->delimiter, 'flags' => []]; |
| 325 | 325 | } |
| 326 | - }else{ |
|
| 326 | + } else { |
|
| 327 | 327 | throw new RuntimeException(\imap_last_error()); |
| 328 | 328 | } |
| 329 | 329 | |
@@ -345,9 +345,9 @@ discard block |
||
| 345 | 345 | public function store(array $flags, $from, $to = null, $mode = null, $silent = true, $uid = false) { |
| 346 | 346 | $flag = trim(is_array($flags) ? implode(" ", $flags) : $flags); |
| 347 | 347 | |
| 348 | - if ($mode == "+"){ |
|
| 348 | + if ($mode == "+") { |
|
| 349 | 349 | $status = \imap_setflag_full($this->stream, $from, $flag, $uid ? IMAP::FT_UID : IMAP::NIL); |
| 350 | - }else{ |
|
| 350 | + } else { |
|
| 351 | 351 | $status = \imap_clearflag_full($this->stream, $from, $flag, $uid ? IMAP::FT_UID : IMAP::NIL); |
| 352 | 352 | } |
| 353 | 353 | |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | */ |
| 370 | 370 | public function appendMessage($folder, $message, $flags = null, $date = null) { |
| 371 | 371 | if ($date != null) { |
| 372 | - if ($date instanceof \Carbon\Carbon){ |
|
| 372 | + if ($date instanceof \Carbon\Carbon) { |
|
| 373 | 373 | $date = $date->format('d-M-Y H:i:s O'); |
| 374 | 374 | } |
| 375 | 375 | return \imap_append($this->stream, $folder, $message, $flags, $date); |
@@ -401,7 +401,7 @@ discard block |
||
| 401 | 401 | * @return array|bool Tokens if operation successful, false if an error occurred |
| 402 | 402 | */ |
| 403 | 403 | public function copyManyMessages($messages, $folder, $uid = false) { |
| 404 | - foreach($messages as $msg) { |
|
| 404 | + foreach ($messages as $msg) { |
|
| 405 | 405 | if ($this->copyMessage($folder, $msg, null, $uid) == false) { |
| 406 | 406 | return false; |
| 407 | 407 | } |
@@ -433,7 +433,7 @@ discard block |
||
| 433 | 433 | * @return array|bool Tokens if operation successful, false if an error occurred |
| 434 | 434 | */ |
| 435 | 435 | public function moveManyMessages($messages, $folder, $uid = false) { |
| 436 | - foreach($messages as $msg) { |
|
| 436 | + foreach ($messages as $msg) { |
|
| 437 | 437 | if ($this->moveMessage($folder, $msg, null, $uid) == false) { |
| 438 | 438 | return false; |
| 439 | 439 | } |
@@ -542,14 +542,14 @@ discard block |
||
| 542 | 542 | /** |
| 543 | 543 | * Enable the debug mode |
| 544 | 544 | */ |
| 545 | - public function enableDebug(){ |
|
| 545 | + public function enableDebug() { |
|
| 546 | 546 | $this->debug = true; |
| 547 | 547 | } |
| 548 | 548 | |
| 549 | 549 | /** |
| 550 | 550 | * Disable the debug mode |
| 551 | 551 | */ |
| 552 | - public function disableDebug(){ |
|
| 552 | + public function disableDebug() { |
|
| 553 | 553 | $this->debug = false; |
| 554 | 554 | } |
| 555 | 555 | |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | * @throws ConnectionFailedException |
| 89 | 89 | * @throws RuntimeException |
| 90 | 90 | */ |
| 91 | - protected function enableTls(){ |
|
| 91 | + protected function enableTls() { |
|
| 92 | 92 | $response = $this->requestAndResponse('STARTTLS'); |
| 93 | 93 | $result = $response && stream_socket_enable_crypto($this->stream, true, $this->getCryptoMethod()); |
| 94 | 94 | if (!$result) { |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | $stack = []; |
| 151 | 151 | |
| 152 | 152 | // replace any trailing <NL> including spaces with a single space |
| 153 | - $line = rtrim($line) . ' '; |
|
| 153 | + $line = rtrim($line).' '; |
|
| 154 | 154 | while (($pos = strpos($line, ' ')) !== false) { |
| 155 | 155 | $token = substr($line, 0, $pos); |
| 156 | 156 | if (!strlen($token)) { |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | $line .= $this->nextLine(); |
| 185 | 185 | } |
| 186 | 186 | $tokens[] = $token; |
| 187 | - $line = trim($line) . ' '; |
|
| 187 | + $line = trim($line).' '; |
|
| 188 | 188 | continue; |
| 189 | 189 | } |
| 190 | 190 | } |
@@ -285,14 +285,14 @@ discard block |
||
| 285 | 285 | public function sendRequest($command, $tokens = [], &$tag = null) { |
| 286 | 286 | if (!$tag) { |
| 287 | 287 | $this->noun++; |
| 288 | - $tag = 'TAG' . $this->noun; |
|
| 288 | + $tag = 'TAG'.$this->noun; |
|
| 289 | 289 | } |
| 290 | 290 | |
| 291 | - $line = $tag . ' ' . $command; |
|
| 291 | + $line = $tag.' '.$command; |
|
| 292 | 292 | |
| 293 | 293 | foreach ($tokens as $token) { |
| 294 | 294 | if (is_array($token)) { |
| 295 | - if (fwrite($this->stream, $line . ' ' . $token[0] . "\r\n") === false) { |
|
| 295 | + if (fwrite($this->stream, $line.' '.$token[0]."\r\n") === false) { |
|
| 296 | 296 | throw new RuntimeException('failed to write - connection closed?'); |
| 297 | 297 | } |
| 298 | 298 | if (!$this->assumedNextLine('+ ')) { |
@@ -300,12 +300,12 @@ discard block |
||
| 300 | 300 | } |
| 301 | 301 | $line = $token[1]; |
| 302 | 302 | } else { |
| 303 | - $line .= ' ' . $token; |
|
| 303 | + $line .= ' '.$token; |
|
| 304 | 304 | } |
| 305 | 305 | } |
| 306 | 306 | if ($this->debug) echo ">> ".$line."\n"; |
| 307 | 307 | |
| 308 | - if (fwrite($this->stream, $line . "\r\n") === false) { |
|
| 308 | + if (fwrite($this->stream, $line."\r\n") === false) { |
|
| 309 | 309 | throw new RuntimeException('failed to write - connection closed?'); |
| 310 | 310 | } |
| 311 | 311 | } |
@@ -335,9 +335,9 @@ discard block |
||
| 335 | 335 | public function escapeString($string) { |
| 336 | 336 | if (func_num_args() < 2) { |
| 337 | 337 | if (strpos($string, "\n") !== false) { |
| 338 | - return ['{' . strlen($string) . '}', $string]; |
|
| 338 | + return ['{'.strlen($string).'}', $string]; |
|
| 339 | 339 | } else { |
| 340 | - return '"' . str_replace(['\\', '"'], ['\\\\', '\\"'], $string) . '"'; |
|
| 340 | + return '"'.str_replace(['\\', '"'], ['\\\\', '\\"'], $string).'"'; |
|
| 341 | 341 | } |
| 342 | 342 | } |
| 343 | 343 | $result = []; |
@@ -362,7 +362,7 @@ discard block |
||
| 362 | 362 | } |
| 363 | 363 | $result[] = $this->escapeList($v); |
| 364 | 364 | } |
| 365 | - return '(' . implode(' ', $result) . ')'; |
|
| 365 | + return '('.implode(' ', $result).')'; |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -440,7 +440,7 @@ discard block |
||
| 440 | 440 | * |
| 441 | 441 | * @return bool |
| 442 | 442 | */ |
| 443 | - public function connected(){ |
|
| 443 | + public function connected() { |
|
| 444 | 444 | return (boolean) $this->stream; |
| 445 | 445 | } |
| 446 | 446 | |
@@ -487,10 +487,10 @@ discard block |
||
| 487 | 487 | $result[strtolower($tokens[1])] = $tokens[0]; |
| 488 | 488 | break; |
| 489 | 489 | case '[UIDVALIDITY': |
| 490 | - $result['uidvalidity'] = (int)$tokens[2]; |
|
| 490 | + $result['uidvalidity'] = (int) $tokens[2]; |
|
| 491 | 491 | break; |
| 492 | 492 | case '[UIDNEXT': |
| 493 | - $result['uidnext'] = (int)$tokens[2]; |
|
| 493 | + $result['uidnext'] = (int) $tokens[2]; |
|
| 494 | 494 | break; |
| 495 | 495 | default: |
| 496 | 496 | // ignore |
@@ -544,17 +544,17 @@ discard block |
||
| 544 | 544 | if (is_array($from)) { |
| 545 | 545 | $set = implode(',', $from); |
| 546 | 546 | } elseif ($to === null) { |
| 547 | - $set = (int)$from; |
|
| 547 | + $set = (int) $from; |
|
| 548 | 548 | } elseif ($to === INF) { |
| 549 | - $set = (int)$from . ':*'; |
|
| 549 | + $set = (int) $from.':*'; |
|
| 550 | 550 | } else { |
| 551 | - $set = (int)$from . ':' . (int)$to; |
|
| 551 | + $set = (int) $from.':'.(int) $to; |
|
| 552 | 552 | } |
| 553 | 553 | |
| 554 | - $items = (array)$items; |
|
| 554 | + $items = (array) $items; |
|
| 555 | 555 | $itemList = $this->escapeList($items); |
| 556 | 556 | |
| 557 | - $this->sendRequest(($uid ? 'UID ' : '') . 'FETCH', [$set, $itemList], $tag); |
|
| 557 | + $this->sendRequest(($uid ? 'UID ' : '').'FETCH', [$set, $itemList], $tag); |
|
| 558 | 558 | |
| 559 | 559 | $result = []; |
| 560 | 560 | $tokens = null; // define $tokens variable before first use |
@@ -616,7 +616,7 @@ discard block |
||
| 616 | 616 | } |
| 617 | 617 | if ($uid) { |
| 618 | 618 | $result[$tokens[2][$uidKey]] = $data; |
| 619 | - }else{ |
|
| 619 | + } else { |
|
| 620 | 620 | $result[$tokens[0]] = $data; |
| 621 | 621 | } |
| 622 | 622 | } |
@@ -650,7 +650,7 @@ discard block |
||
| 650 | 650 | * @return array |
| 651 | 651 | * @throws RuntimeException |
| 652 | 652 | */ |
| 653 | - public function headers($uids, $rfc = "RFC822", $uid = false){ |
|
| 653 | + public function headers($uids, $rfc = "RFC822", $uid = false) { |
|
| 654 | 654 | return $this->fetch(["$rfc.HEADER"], $uids, null, $uid); |
| 655 | 655 | } |
| 656 | 656 | |
@@ -662,7 +662,7 @@ discard block |
||
| 662 | 662 | * @return array |
| 663 | 663 | * @throws RuntimeException |
| 664 | 664 | */ |
| 665 | - public function flags($uids, $uid = false){ |
|
| 665 | + public function flags($uids, $uid = false) { |
|
| 666 | 666 | return $this->fetch(["FLAGS"], $uids, null, $uid); |
| 667 | 667 | } |
| 668 | 668 | |
@@ -749,23 +749,23 @@ discard block |
||
| 749 | 749 | public function store(array $flags, $from, $to = null, $mode = null, $silent = true, $uid = false) { |
| 750 | 750 | $item = 'FLAGS'; |
| 751 | 751 | if ($mode == '+' || $mode == '-') { |
| 752 | - $item = $mode . $item; |
|
| 752 | + $item = $mode.$item; |
|
| 753 | 753 | } |
| 754 | 754 | if ($silent) { |
| 755 | 755 | $item .= '.SILENT'; |
| 756 | 756 | } |
| 757 | 757 | |
| 758 | 758 | $flags = $this->escapeList($flags); |
| 759 | - $set = (int)$from; |
|
| 759 | + $set = (int) $from; |
|
| 760 | 760 | if ($to !== null) { |
| 761 | - $set .= ':' . ($to == INF ? '*' : (int)$to); |
|
| 761 | + $set .= ':'.($to == INF ? '*' : (int) $to); |
|
| 762 | 762 | } |
| 763 | 763 | |
| 764 | 764 | $command = ($uid ? "UID " : "")."STORE"; |
| 765 | 765 | $result = $this->requestAndResponse($command, [$set, $item, $flags], $silent); |
| 766 | 766 | |
| 767 | 767 | if ($silent) { |
| 768 | - return (bool)$result; |
|
| 768 | + return (bool) $result; |
|
| 769 | 769 | } |
| 770 | 770 | |
| 771 | 771 | $tokens = $result; |
@@ -816,9 +816,9 @@ discard block |
||
| 816 | 816 | * @throws RuntimeException |
| 817 | 817 | */ |
| 818 | 818 | public function copyMessage($folder, $from, $to = null, $uid = false) { |
| 819 | - $set = (int)$from; |
|
| 819 | + $set = (int) $from; |
|
| 820 | 820 | if ($to !== null) { |
| 821 | - $set .= ':' . ($to == INF ? '*' : (int)$to); |
|
| 821 | + $set .= ':'.($to == INF ? '*' : (int) $to); |
|
| 822 | 822 | } |
| 823 | 823 | $command = ($uid ? "UID " : "")."COPY"; |
| 824 | 824 | |
@@ -856,9 +856,9 @@ discard block |
||
| 856 | 856 | * @throws RuntimeException |
| 857 | 857 | */ |
| 858 | 858 | public function moveMessage($folder, $from, $to = null, $uid = false) { |
| 859 | - $set = (int)$from; |
|
| 859 | + $set = (int) $from; |
|
| 860 | 860 | if ($to !== null) { |
| 861 | - $set .= ':' . ($to == INF ? '*' : (int)$to); |
|
| 861 | + $set .= ':'.($to == INF ? '*' : (int) $to); |
|
| 862 | 862 | } |
| 863 | 863 | $command = ($uid ? "UID " : "")."MOVE"; |
| 864 | 864 | |
@@ -1047,7 +1047,7 @@ discard block |
||
| 1047 | 1047 | $ids = []; |
| 1048 | 1048 | foreach ($uids as $msgn => $v) { |
| 1049 | 1049 | $id = $uid ? $v : $msgn; |
| 1050 | - if ( ($to >= $id && $from <= $id) || ($to === "*" && $from <= $id) ){ |
|
| 1050 | + if (($to >= $id && $from <= $id) || ($to === "*" && $from <= $id)) { |
|
| 1051 | 1051 | $ids[] = $id; |
| 1052 | 1052 | } |
| 1053 | 1053 | } |
@@ -1061,14 +1061,14 @@ discard block |
||
| 1061 | 1061 | /** |
| 1062 | 1062 | * Enable the debug mode |
| 1063 | 1063 | */ |
| 1064 | - public function enableDebug(){ |
|
| 1064 | + public function enableDebug() { |
|
| 1065 | 1065 | $this->debug = true; |
| 1066 | 1066 | } |
| 1067 | 1067 | |
| 1068 | 1068 | /** |
| 1069 | 1069 | * Disable the debug mode |
| 1070 | 1070 | */ |
| 1071 | - public function disableDebug(){ |
|
| 1071 | + public function disableDebug() { |
|
| 1072 | 1072 | $this->debug = false; |
| 1073 | 1073 | } |
| 1074 | 1074 | } |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @return string |
| 59 | 59 | */ |
| 60 | - public function toString(){ |
|
| 60 | + public function toString() { |
|
| 61 | 61 | return $this->__toString(); |
| 62 | 62 | } |
| 63 | 63 | |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return array |
| 68 | 68 | */ |
| 69 | - public function __serialize(){ |
|
| 69 | + public function __serialize() { |
|
| 70 | 70 | return $this->values; |
| 71 | 71 | } |
| 72 | 72 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | * |
| 76 | 76 | * @return array |
| 77 | 77 | */ |
| 78 | - public function toArray(){ |
|
| 78 | + public function toArray() { |
|
| 79 | 79 | return $this->__serialize(); |
| 80 | 80 | } |
| 81 | 81 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @return Carbon|null |
| 86 | 86 | */ |
| 87 | - public function toDate(){ |
|
| 87 | + public function toDate() { |
|
| 88 | 88 | $date = $this->first(); |
| 89 | 89 | if ($date instanceof Carbon) return $date; |
| 90 | 90 | |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | if ($this->contains($value) === false) { |
| 196 | 196 | $this->values[] = $value; |
| 197 | 197 | } |
| 198 | - }else{ |
|
| 198 | + } else { |
|
| 199 | 199 | $this->values[] = $value; |
| 200 | 200 | } |
| 201 | 201 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | * |
| 207 | 207 | * @return Attribute |
| 208 | 208 | */ |
| 209 | - public function setName($name){ |
|
| 209 | + public function setName($name) { |
|
| 210 | 210 | $this->name = $name; |
| 211 | 211 | |
| 212 | 212 | return $this; |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | * |
| 218 | 218 | * @return string |
| 219 | 219 | */ |
| 220 | - public function getName(){ |
|
| 220 | + public function getName() { |
|
| 221 | 221 | return $this->name; |
| 222 | 222 | } |
| 223 | 223 | |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | * |
| 227 | 227 | * @return array |
| 228 | 228 | */ |
| 229 | - public function get(){ |
|
| 229 | + public function get() { |
|
| 230 | 230 | return $this->values; |
| 231 | 231 | } |
| 232 | 232 | |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | * |
| 236 | 236 | * @return array |
| 237 | 237 | */ |
| 238 | - public function all(){ |
|
| 238 | + public function all() { |
|
| 239 | 239 | return $this->get(); |
| 240 | 240 | } |
| 241 | 241 | |
@@ -244,7 +244,7 @@ discard block |
||
| 244 | 244 | * |
| 245 | 245 | * @return mixed|null |
| 246 | 246 | */ |
| 247 | - public function first(){ |
|
| 247 | + public function first() { |
|
| 248 | 248 | if ($this->offsetExists(0)) { |
| 249 | 249 | return $this->values[0]; |
| 250 | 250 | } |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | * |
| 257 | 257 | * @return mixed|null |
| 258 | 258 | */ |
| 259 | - public function last(){ |
|
| 259 | + public function last() { |
|
| 260 | 260 | if (($cnt = $this->count()) > 0) { |
| 261 | 261 | return $this->values[$cnt - 1]; |
| 262 | 262 | } |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * @return int |
| 270 | 270 | */ |
| 271 | - public function count(){ |
|
| 271 | + public function count() { |
|
| 272 | 272 | return count($this->values); |
| 273 | 273 | } |
| 274 | 274 | } |
| 275 | 275 | \ No newline at end of file |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | $this->part_number = $part->part_number; |
| 104 | 104 | |
| 105 | 105 | $default_mask = $this->oMessage->getClient()->getDefaultAttachmentMask(); |
| 106 | - if($default_mask != null) { |
|
| 106 | + if ($default_mask != null) { |
|
| 107 | 107 | $this->mask = $default_mask; |
| 108 | 108 | } |
| 109 | 109 | |
@@ -120,10 +120,10 @@ discard block |
||
| 120 | 120 | * @throws MethodNotFoundException |
| 121 | 121 | */ |
| 122 | 122 | public function __call($method, $arguments) { |
| 123 | - if(strtolower(substr($method, 0, 3)) === 'get') { |
|
| 123 | + if (strtolower(substr($method, 0, 3)) === 'get') { |
|
| 124 | 124 | $name = Str::snake(substr($method, 3)); |
| 125 | 125 | |
| 126 | - if(isset($this->attributes[$name])) { |
|
| 126 | + if (isset($this->attributes[$name])) { |
|
| 127 | 127 | return $this->attributes[$name]; |
| 128 | 128 | } |
| 129 | 129 | |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * @return mixed|null |
| 160 | 160 | */ |
| 161 | 161 | public function __get($name) { |
| 162 | - if(isset($this->attributes[$name])) { |
|
| 162 | + if (isset($this->attributes[$name])) { |
|
| 163 | 163 | return $this->attributes[$name]; |
| 164 | 164 | } |
| 165 | 165 | |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | $this->setName($filename); |
| 223 | 223 | } elseif (($name = $this->part->name) !== null) { |
| 224 | 224 | $this->setName($name); |
| 225 | - }else { |
|
| 225 | + } else { |
|
| 226 | 226 | $this->setName("undefined"); |
| 227 | 227 | } |
| 228 | 228 | |
@@ -255,9 +255,9 @@ discard block |
||
| 255 | 255 | public function setName($name) { |
| 256 | 256 | $decoder = $this->config['decoder']['attachment']; |
| 257 | 257 | if ($name !== null) { |
| 258 | - if($decoder === 'utf-8' && extension_loaded('imap')) { |
|
| 258 | + if ($decoder === 'utf-8' && extension_loaded('imap')) { |
|
| 259 | 259 | $this->name = \imap_utf8($name); |
| 260 | - }else{ |
|
| 260 | + } else { |
|
| 261 | 261 | $this->name = mb_decode_mimeheader($name); |
| 262 | 262 | } |
| 263 | 263 | } |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * @return string|null |
| 270 | 270 | */ |
| 271 | - public function getMimeType(){ |
|
| 271 | + public function getMimeType() { |
|
| 272 | 272 | return (new \finfo())->buffer($this->getContent(), FILEINFO_MIME_TYPE); |
| 273 | 273 | } |
| 274 | 274 | |
@@ -277,9 +277,9 @@ discard block |
||
| 277 | 277 | * |
| 278 | 278 | * @return string|null |
| 279 | 279 | */ |
| 280 | - public function getExtension(){ |
|
| 280 | + public function getExtension() { |
|
| 281 | 281 | $deprecated_guesser = "\Symfony\Component\HttpFoundation\File\MimeType\ExtensionGuesser"; |
| 282 | - if (class_exists($deprecated_guesser) !== false){ |
|
| 282 | + if (class_exists($deprecated_guesser) !== false) { |
|
| 283 | 283 | return $deprecated_guesser::getInstance()->guess($this->getMimeType()); |
| 284 | 284 | } |
| 285 | 285 | $guesser = "\Symfony\Component\Mime\MimeTypes"; |
@@ -292,14 +292,14 @@ discard block |
||
| 292 | 292 | * |
| 293 | 293 | * @return array |
| 294 | 294 | */ |
| 295 | - public function getAttributes(){ |
|
| 295 | + public function getAttributes() { |
|
| 296 | 296 | return $this->attributes; |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | /** |
| 300 | 300 | * @return Message |
| 301 | 301 | */ |
| 302 | - public function getMessage(){ |
|
| 302 | + public function getMessage() { |
|
| 303 | 303 | return $this->oMessage; |
| 304 | 304 | } |
| 305 | 305 | |
@@ -309,8 +309,8 @@ discard block |
||
| 309 | 309 | * |
| 310 | 310 | * @return $this |
| 311 | 311 | */ |
| 312 | - public function setMask($mask){ |
|
| 313 | - if(class_exists($mask)){ |
|
| 312 | + public function setMask($mask) { |
|
| 313 | + if (class_exists($mask)) { |
|
| 314 | 314 | $this->mask = $mask; |
| 315 | 315 | } |
| 316 | 316 | |
@@ -322,7 +322,7 @@ discard block |
||
| 322 | 322 | * |
| 323 | 323 | * @return string |
| 324 | 324 | */ |
| 325 | - public function getMask(){ |
|
| 325 | + public function getMask() { |
|
| 326 | 326 | return $this->mask; |
| 327 | 327 | } |
| 328 | 328 | |
@@ -333,9 +333,9 @@ discard block |
||
| 333 | 333 | * @return mixed |
| 334 | 334 | * @throws MaskNotFoundException |
| 335 | 335 | */ |
| 336 | - public function mask($mask = null){ |
|
| 336 | + public function mask($mask = null) { |
|
| 337 | 337 | $mask = $mask !== null ? $mask : $this->mask; |
| 338 | - if(class_exists($mask)){ |
|
| 338 | + if (class_exists($mask)) { |
|
| 339 | 339 | return new $mask($this); |
| 340 | 340 | } |
| 341 | 341 | |