Test Setup Failed
Branch master (3a166a)
by Pablo
11:42
created
Category
src/Entity/SwivelFeature.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
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 [];
Please login to merge, or discard this patch.
src/database/migrations/2017_10_08_150000_create_swivel_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
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('');
Please login to merge, or discard this patch.
src/SwivelServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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
         });
Please login to merge, or discard this patch.