@@ -15,7 +15,7 @@ |
||
15 | 15 | */ |
16 | 16 | public function withLocale($locale, $callback) |
17 | 17 | { |
18 | - if (! $locale) { |
|
18 | + if (!$locale) { |
|
19 | 19 | return $callback(); |
20 | 20 | } |
21 | 21 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | { |
32 | 32 | $this->container = $container; |
33 | 33 | |
34 | - if (! $this->container->bound('config')) { |
|
34 | + if (!$this->container->bound('config')) { |
|
35 | 35 | $this->container->instance('config', new Fluent); |
36 | 36 | } |
37 | 37 | } |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public static function has($key) |
21 | 21 | { |
22 | - return ! is_null(static::$app['request']->cookie($key, null)); |
|
22 | + return !is_null(static::$app['request']->cookie($key, null)); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -56,7 +56,7 @@ |
||
56 | 56 | */ |
57 | 57 | public static function routes(array $options = []) |
58 | 58 | { |
59 | - if (! static::$app->providerIsLoaded(UiServiceProvider::class)) { |
|
59 | + if (!static::$app->providerIsLoaded(UiServiceProvider::class)) { |
|
60 | 60 | throw new RuntimeException('In order to use the Auth::routes() method, please install the laravel/ui package.'); |
61 | 61 | } |
62 | 62 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $callback(static::getFacadeRoot()); |
38 | 38 | } |
39 | 39 | |
40 | - static::$app->afterResolving($accessor, function ($service) use ($callback) { |
|
40 | + static::$app->afterResolving($accessor, function($service) use ($callback) { |
|
41 | 41 | $callback($service); |
42 | 42 | }); |
43 | 43 | } |
@@ -49,10 +49,10 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public static function spy() |
51 | 51 | { |
52 | - if (! static::isMock()) { |
|
52 | + if (!static::isMock()) { |
|
53 | 53 | $class = static::getMockableClass(); |
54 | 54 | |
55 | - return tap($class ? Mockery::spy($class) : Mockery::spy(), function ($spy) { |
|
55 | + return tap($class ? Mockery::spy($class) : Mockery::spy(), function($spy) { |
|
56 | 56 | static::swap($spy); |
57 | 57 | }); |
58 | 58 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected static function createFreshMockInstance() |
99 | 99 | { |
100 | - return tap(static::createMock(), function ($mock) { |
|
100 | + return tap(static::createMock(), function($mock) { |
|
101 | 101 | static::swap($mock); |
102 | 102 | |
103 | 103 | $mock->shouldAllowMockingProtectedMethods(); |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | { |
255 | 255 | $instance = static::getFacadeRoot(); |
256 | 256 | |
257 | - if (! $instance) { |
|
257 | + if (!$instance) { |
|
258 | 258 | throw new RuntimeException('A facade root has not been set.'); |
259 | 259 | } |
260 | 260 |
@@ -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; |