@@ -68,7 +68,7 @@ |
||
| 68 | 68 | $config['cache_duration'] = 0; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - return Cache::remember($config['cache_key'], $config['cache_duration'], function () { |
|
| 71 | + return Cache::remember($config['cache_key'], $config['cache_duration'], function() { |
|
| 72 | 72 | $features = self::all(); |
| 73 | 73 | if ($features->count() === 0) { |
| 74 | 74 | return []; |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - \Schema::create('swivel_features', function (Blueprint $table) { |
|
| 16 | + \Schema::create('swivel_features', function(Blueprint $table) { |
|
| 17 | 17 | $table->integer('id', true, true); |
| 18 | 18 | $table->string('slug')->unique(); |
| 19 | 19 | $table->string('buckets', 20)->default(''); |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | */ |
| 45 | 45 | public function register() |
| 46 | 46 | { |
| 47 | - $this->app->singleton('swivel', function (Container $app) { |
|
| 47 | + $this->app->singleton('swivel', function(Container $app) { |
|
| 48 | 48 | $request = $app->make(\Illuminate\Http\Request::class); |
| 49 | 49 | return new SwivelComponent($request); |
| 50 | 50 | }); |