@@ -22,11 +22,11 @@ |
||
22 | 22 | */ |
23 | 23 | public function register() |
24 | 24 | { |
25 | - Blade::directive('vue', function ($expression) { |
|
25 | + Blade::directive('vue', function($expression) { |
|
26 | 26 | return VueDirective::start($expression); |
27 | 27 | }); |
28 | 28 | |
29 | - Blade::directive('endvue', function () { |
|
29 | + Blade::directive('endvue', function() { |
|
30 | 30 | return VueDirective::end(); |
31 | 31 | }); |
32 | 32 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | { |
48 | 48 | $attributes = $this->renderAttributes(); |
49 | 49 | |
50 | - return "<{$this->name}" . ( $attributes ? ' ' . $attributes : '' ) . '>'; |
|
50 | + return "<{$this->name}".($attributes ? ' '.$attributes : '').'>'; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -10,7 +10,7 @@ |
||
10 | 10 | * Get package providers. |
11 | 11 | * |
12 | 12 | * @param \Illuminate\Foundation\Application $app |
13 | - * @return array |
|
13 | + * @return string[] |
|
14 | 14 | */ |
15 | 15 | protected function getPackageProviders($app) |
16 | 16 | { |