@@ -31,7 +31,7 @@ |
||
31 | 31 | */ |
32 | 32 | public function register() |
33 | 33 | { |
34 | - $this->app->singleton('translug',function () { |
|
34 | + $this->app->singleton('translug', function() { |
|
35 | 35 | return new Translation(new Client()); |
36 | 36 | }); |
37 | 37 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (! function_exists('translug')) { |
|
3 | +if (!function_exists('translug')) { |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Arrange for a flash message. |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | { |
13 | 13 | $translator = app('translug'); |
14 | 14 | |
15 | - if (! is_null($title)) { |
|
15 | + if (!is_null($title)) { |
|
16 | 16 | return $translator->translug($title); |
17 | 17 | } |
18 | 18 |