Skip to content

Commit 5a39e9d

Browse files
taylorotwellStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent b714888 commit 5a39e9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Console/Scheduling/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ protected function pingCallback($url)
577577
return function (Container $container, HttpClient $http) use ($url) {
578578
try {
579579
$http->get($url);
580-
} catch (ClientExceptionInterface | TransferException $e) {
580+
} catch (ClientExceptionInterface|TransferException $e) {
581581
$container->make(ExceptionHandler::class)->report($e);
582582
}
583583
};

src/Illuminate/Support/Traits/ForwardsCalls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected function forwardCallTo($object, $method, $parameters)
2121
{
2222
try {
2323
return $object->{$method}(...$parameters);
24-
} catch (Error | BadMethodCallException $e) {
24+
} catch (Error|BadMethodCallException $e) {
2525
$pattern = '~^Call to undefined method (?P<class>[^:]+)::(?P<method>[^\(]+)\(\)$~';
2626

2727
if (! preg_match($pattern, $e->getMessage(), $matches)) {

0 commit comments

Comments
 (0)