Completed
Pull Request — master (#74)
by Roger
02:17
created
src/Http/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
  * Same configuration as Laravel 5.2:
4 4
  * See https://github.com/laravel/framework/blob/5.2/src/Illuminate/Auth/Console/stubs/make/routes.stub
5 5
  */
6
-Route::group(['middleware' => 'web'], function () {
6
+Route::group([ 'middleware' => 'web' ], function() {
7 7
     Route::auth();
8 8
 
9 9
     Route::get('/home', 'HomeController@index');
Please login to merge, or discard this patch.
public/plugins/datatables/extensions/Scroller/examples/data/ssp.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@
 block discarded – undo
29 29
 // parameter represents the DataTables column identifier. In this case simple
30 30
 // indexes
31 31
 $columns = [
32
-    ['db' => 'id',         'dt' => 0],
33
-    ['db' => 'firstname',  'dt' => 1],
34
-    ['db' => 'surname',    'dt' => 2],
35
-    ['db' => 'zip',        'dt' => 3],
36
-    ['db' => 'country',    'dt' => 4],
32
+    [ 'db' => 'id', 'dt' => 0 ],
33
+    [ 'db' => 'firstname', 'dt' => 1 ],
34
+    [ 'db' => 'surname', 'dt' => 2 ],
35
+    [ 'db' => 'zip', 'dt' => 3 ],
36
+    [ 'db' => 'country', 'dt' => 4 ],
37 37
 ];
38 38
 
39 39
 // SQL server connection information
Please login to merge, or discard this patch.
src/Providers/AdminLTETemplateServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,10 +23,10 @@  discard block
 block discarded – undo
23 23
         }
24 24
 
25 25
         if ($this->app->runningInConsole()) {
26
-            $this->commands([\Acacha\AdminLTETemplateLaravel\Console\AdminLTE::class]);
26
+            $this->commands([ \Acacha\AdminLTETemplateLaravel\Console\AdminLTE::class ]);
27 27
         }
28 28
 
29
-        $this->app->bind('AdminLTE', function () {
29
+        $this->app->bind('AdminLTE', function() {
30 30
             return new \Acacha\AdminLTETemplateLaravel\AdminLTE();
31 31
         });
32 32
     }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         if (!$this->app->routesAreCached()) {
54 54
             $router = app('router');
55 55
 
56
-            $router->group(['namespace' => $this->getAppNamespace().'Http\Controllers'], function () {
56
+            $router->group([ 'namespace' => $this->getAppNamespace().'Http\Controllers' ], function() {
57 57
                 require __DIR__.'/../Http/routes.php';
58 58
             });
59 59
         }
Please login to merge, or discard this patch.