@@ -11,7 +11,7 @@ |
||
11 | 11 | */ |
12 | 12 | public function register() |
13 | 13 | { |
14 | - $this->app->singleton(SmsRuApi::class, function ($app) { |
|
14 | + $this->app->singleton(SmsRuApi::class, function($app) { |
|
15 | 15 | $apiId = $this->app['config']['services.sms_ru.api_id']; |
16 | 16 | $client = new SmsRuApi(new \Zelenin\SmsRu\Auth\ApiIdAuth($apiId)); |
17 | 17 |
@@ -48,7 +48,7 @@ |
||
48 | 48 | if (is_string($message)) { |
49 | 49 | $message = new SmsRuMessage($message); |
50 | 50 | } |
51 | - if (! $message instanceof SmsRuMessage) { |
|
51 | + if (!$message instanceof SmsRuMessage) { |
|
52 | 52 | throw CouldNotSendNotification::invalidMessageObject($message); |
53 | 53 | } |
54 | 54 |