Passed
Branch master (8da6e2)
by Anton
04:53
created
Category
src/LikeCounter/Models/LikeCounter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Providers/LoveServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
database/migrations/2016_09_02_153301_create_love_likes_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
database/migrations/2016_09_02_163301_create_love_like_counters_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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', [
Please login to merge, or discard this patch.