@@ -23,19 +23,19 @@ |
||
| 23 | 23 | */ |
| 24 | 24 | public function register() |
| 25 | 25 | { |
| 26 | - Blade::directive('vue', function ($expression) { |
|
| 26 | + Blade::directive('vue', function($expression) { |
|
| 27 | 27 | return Basic::start($expression); |
| 28 | 28 | }); |
| 29 | 29 | |
| 30 | - Blade::directive('endvue', function () { |
|
| 30 | + Blade::directive('endvue', function() { |
|
| 31 | 31 | return Basic::end(); |
| 32 | 32 | }); |
| 33 | 33 | |
| 34 | - Blade::directive('inlinevue', function ($expression) { |
|
| 34 | + Blade::directive('inlinevue', function($expression) { |
|
| 35 | 35 | return Inline::start($expression); |
| 36 | 36 | }); |
| 37 | 37 | |
| 38 | - Blade::directive('endinlinevue', function () { |
|
| 38 | + Blade::directive('endinlinevue', function() { |
|
| 39 | 39 | return Inline::end(); |
| 40 | 40 | }); |
| 41 | 41 | } |
@@ -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 | /** |