@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Cog\Laravel\Love\LikeCounter\Models; |
15 | 15 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Cog\Laravel\Love\Providers; |
15 | 15 |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | use Illuminate\Database\Migrations\Migration; |
15 | 15 | use Illuminate\Database\Schema\Blueprint; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function up() |
29 | 29 | { |
30 | - Schema::create('love_likes', function (Blueprint $table) { |
|
30 | + Schema::create('love_likes', function(Blueprint $table) { |
|
31 | 31 | $table->increments('id'); |
32 | 32 | $table->morphs('likeable'); |
33 | 33 | $table->integer('user_id')->unsigned()->index(); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | use Illuminate\Database\Migrations\Migration; |
15 | 15 | use Illuminate\Database\Schema\Blueprint; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function up() |
29 | 29 | { |
30 | - Schema::create('love_like_counters', function (Blueprint $table) { |
|
30 | + Schema::create('love_like_counters', function(Blueprint $table) { |
|
31 | 31 | $table->increments('id'); |
32 | 32 | $table->morphs('likeable'); |
33 | 33 | $table->enum('type_id', [ |