Passed
Push — master ( 7ef0e7...0d2f96 )
by Jordan
03:48
created
src/DirectiveServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,19 +23,19 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Element.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.