@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('data', function (Blueprint $table) { |
|
16 | + Schema::create('data', function(Blueprint $table) { |
|
17 | 17 | $table->id(); |
18 | 18 | $table->string('name'); |
19 | 19 | $table->json('content'); |
@@ -15,11 +15,11 @@ |
||
15 | 15 | { |
16 | 16 | parent::boot(); |
17 | 17 | |
18 | - static::saving(function () { |
|
18 | + static::saving(function() { |
|
19 | 19 | self::cacheKey(); |
20 | 20 | }); |
21 | 21 | |
22 | - static::deleting(function () { |
|
22 | + static::deleting(function() { |
|
23 | 23 | self::cacheKey(); |
24 | 24 | }); |
25 | 25 | } |