Completed
Pull Request — master (#49)
by
unknown
06:05
created
src/ServiceProvider.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -24,19 +24,19 @@  discard block
 block discarded – undo
24 24
             __DIR__.'/config/config.php', 'laravel-widgets'
25 25
         );
26 26
 
27
-        $this->app->bind('arrilot.widget', function () {
27
+        $this->app->bind('arrilot.widget', function() {
28 28
             return new WidgetFactory(new LaravelApplicationWrapper());
29 29
         });
30 30
 
31
-        $this->app->bind('arrilot.async-widget', function () {
31
+        $this->app->bind('arrilot.async-widget', function() {
32 32
             return new AsyncWidgetFactory(new LaravelApplicationWrapper());
33 33
         });
34 34
 
35
-        $this->app->singleton('arrilot.widget-group-collection', function () {
35
+        $this->app->singleton('arrilot.widget-group-collection', function() {
36 36
             return new WidgetGroupCollection(new LaravelApplicationWrapper());
37 37
         });
38 38
 
39
-        $this->app->singleton('command.widget.make', function ($app) {
39
+        $this->app->singleton('command.widget.make', function($app) {
40 40
             return new WidgetMakeCommand($app['files']);
41 41
         });
42 42
 
@@ -65,24 +65,24 @@  discard block
 block discarded – undo
65 65
         ];
66 66
 
67 67
         if (!$this->app->routesAreCached()) {
68
-            $this->app['router']->group($routeConfig, function ($router) {
68
+            $this->app['router']->group($routeConfig, function($router) {
69 69
                 $router->get('load-widget', 'WidgetController@showWidget');
70 70
             });
71 71
         }
72 72
 
73
-        Blade::directive('widget', function($expression){
73
+        Blade::directive('widget', function($expression) {
74 74
             return "<?php echo app('arrilot.widget')->run{$expression}; ?>";
75 75
         });
76 76
 
77
-        Blade::directive('async-widget', function($expression){
77
+        Blade::directive('async-widget', function($expression) {
78 78
             return "<?php echo app('arrilot.async-widget')->run{$expression}; ?>";
79 79
         });
80 80
 
81
-        Blade::directive('asyncWidget', function($expression){
81
+        Blade::directive('asyncWidget', function($expression) {
82 82
             return "<?php echo app('arrilot.async-widget')->run{$expression}; ?>";
83 83
         });
84 84
 
85
-        Blade::directive('asyncWidget', function($expression){
85
+        Blade::directive('asyncWidget', function($expression) {
86 86
             return "<?php echo app('arrilot.arrilot.widget-group-collection')->group{$expression}->display(); ?>";
87 87
         });
88 88
     }
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     protected function registerBladeDirective($name, $expression)
107 107
     {
108
-        Blade::extend(function ($view) use ($name, $expression) {
108
+        Blade::extend(function($view) use ($name, $expression) {
109 109
             $pattern = $this->createMatcher($name);
110 110
 
111 111
             return preg_replace($pattern, $expression, $view);
Please login to merge, or discard this patch.