Passed
Push — master ( 4d5751...61d579 )
by Churakov
01:59
created
src/GridViewServiceProvider.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,23 +7,23 @@
 block discarded – undo
7 7
 
8 8
 class GridViewServiceProvider extends ServiceProvider
9 9
 {
10
-	/**
11
-	 * Service provider for grid
12
-	 *
13
-	 * @return void
14
-	 */
15
-	public function boot()
16
-	{
17
-		$this->loadViewsFrom(__DIR__ . '/../resources/views', 'churakovmike_easygrid');
10
+    /**
11
+     * Service provider for grid
12
+     *
13
+     * @return void
14
+     */
15
+    public function boot()
16
+    {
17
+        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'churakovmike_easygrid');
18 18
 
19
-		require_once __DIR__ . '/functions.php';
19
+        require_once __DIR__ . '/functions.php';
20 20
         Blade::directive('easy_grid', function ($config) {
21 21
             return "<?php echo grid($config) ?>";
22 22
         });
23
-	}
23
+    }
24 24
 
25
-	public function register()
26
-	{
27
-	    //
28
-	}
25
+    public function register()
26
+    {
27
+        //
28
+    }
29 29
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 		$this->loadViewsFrom(__DIR__ . '/../resources/views', 'churakovmike_easygrid');
18 18
 
19 19
 		require_once __DIR__ . '/functions.php';
20
-        Blade::directive('easy_grid', function ($config) {
20
+        Blade::directive('easy_grid', function($config) {
21 21
             return "<?php echo grid($config) ?>";
22 22
         });
23 23
 	}
Please login to merge, or discard this patch.