@@ -30,11 +30,11 @@ |
||
30 | 30 | __DIR__.'/../../config/yandex-speller.php', 'yandex-speller' |
31 | 31 | ); |
32 | 32 | |
33 | - $this->app->singleton('yandex-speller', function () { |
|
33 | + $this->app->singleton('yandex-speller', function() { |
|
34 | 34 | return new YandexSpeller(); |
35 | 35 | }); |
36 | 36 | |
37 | - $this->app->bind(YandexSpeller::class, function () { |
|
37 | + $this->app->bind(YandexSpeller::class, function() { |
|
38 | 38 | return new YandexSpeller(); |
39 | 39 | }); |
40 | 40 | } |
@@ -3,7 +3,7 @@ |
||
3 | 3 | use Fecony\YandexSpeller\YandexSpeller; |
4 | 4 | use Illuminate\Http\JsonResponse; |
5 | 5 | |
6 | -if (! function_exists('speller')) { |
|
6 | +if (!function_exists('speller')) { |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * Checks spelling in the specified $text passage. |