Passed
Push — master ( 3f32a9...11dbc5 )
by Carlos
05:59
created
src/Follow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
             $targets = [$targets];
119 119
         }
120 120
 
121
-        $result->ids = array_map(function ($target) use ($result) {
121
+        $result->ids = array_map(function($target) use ($result) {
122 122
             if ($target instanceof Model) {
123 123
                 $result->classname = get_class($target);
124 124
 
Please login to merge, or discard this patch.
src/Traits/CanBeFollowed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             ->wherePivot('relation', '=', Follow::RELATION_FOLLOW)
50 50
             ->withPivot('followable_type', 'relation', 'created_at')
51 51
             ->addSelect("{$userTable}.*", DB::raw("(CASE WHEN {$tablePrefixedForeignKey} IS NOT NULL THEN 1 ELSE 0 END) as {$eachOtherKey}"))
52
-            ->leftJoin("{$table} as pivot_followables", function ($join) use ($table, $class, $foreignKey) {
52
+            ->leftJoin("{$table} as pivot_followables", function($join) use ($table, $class, $foreignKey) {
53 53
                 $join->on('pivot_followables.followable_type', '=', DB::raw(\addcslashes("'{$class}'", '\\')))
54 54
                     ->on('pivot_followables.followable_id', '=', "{$table}.{$foreignKey}")
55 55
                     ->on("pivot_followables.{$foreignKey}", '=', "{$table}.followable_id")
Please login to merge, or discard this patch.
src/Traits/CanFollow.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
                     ->wherePivot('relation', '=', Follow::RELATION_FOLLOW)
108 108
                     ->withPivot('followable_type', 'relation', 'created_at')
109 109
                     ->addSelect("{$targetTable}.*", DB::raw("(CASE WHEN {$tablePrefixedForeignKey} IS NOT NULL THEN 1 ELSE 0 END) as {$eachOtherKey}"))
110
-                    ->leftJoin("{$table} as pivot_followables", function ($join) use ($table, $class, $foreignKey) {
110
+                    ->leftJoin("{$table} as pivot_followables", function($join) use ($table, $class, $foreignKey) {
111 111
                         $join->on('pivot_followables.followable_type', '=', DB::raw(\addcslashes("'{$class}'", '\\')))
112 112
                             ->on('pivot_followables.followable_id', '=', "{$table}.{$foreignKey}")
113 113
                             ->on("pivot_followables.{$foreignKey}", '=', "{$table}.followable_id")
Please login to merge, or discard this patch.
database/migrations/2018_06_29_032244_create_laravel_follow_tables.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
      */
20 20
     public function up()
21 21
     {
22
-        Schema::create(config('follow.followable_table', 'followables'), function (Blueprint $table) {
22
+        Schema::create(config('follow.followable_table', 'followables'), function(Blueprint $table) {
23 23
             $userForeignKey = config('follow.users_table_foreign_key', 'user_id');
24 24
 
25 25
             // Laravel 5.8 session user is unsignedBigInteger
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
      */
50 50
     public function down()
51 51
     {
52
-        Schema::table(config('follow.followable_table', 'followables'), function ($table) {
53
-            $table->dropForeign(config('follow.followable_table', 'followables') . '_user_id_foreign');
52
+        Schema::table(config('follow.followable_table', 'followables'), function($table) {
53
+            $table->dropForeign(config('follow.followable_table', 'followables').'_user_id_foreign');
54 54
         });
55 55
 
56 56
         Schema::drop(config('follow.followable_table', 'followables'));
Please login to merge, or discard this patch.
src/FollowRelation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
 
102 102
         $namespace = config('follow.model_namespace', 'App');
103 103
 
104
-        $modelName = $namespace . '\\' . studly_case($type);
104
+        $modelName = $namespace.'\\'.studly_case($type);
105 105
 
106 106
         if (!class_exists($modelName)) {
107 107
             throw new InvalidArgumentException("Model {$modelName} not exists. Please check your config 'follow.model_namespace'.");
Please login to merge, or discard this patch.
src/FollowServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@  discard block
 block discarded – undo
21 21
     public function boot()
22 22
     {
23 23
         $this->publishes([
24
-            realpath(__DIR__ . '/../config/follow.php') => config_path('follow.php'),
24
+            realpath(__DIR__.'/../config/follow.php') => config_path('follow.php'),
25 25
         ], 'config');
26 26
 
27 27
         $this->publishes([
28
-            realpath(__DIR__ . '/../database/migrations') => database_path('migrations'),
28
+            realpath(__DIR__.'/../database/migrations') => database_path('migrations'),
29 29
         ], 'migrations');
30 30
     }
31 31
 
@@ -34,6 +34,6 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function register()
36 36
     {
37
-        $this->mergeConfigFrom(realpath(__DIR__ . '/../config/follow.php'), 'follow');
37
+        $this->mergeConfigFrom(realpath(__DIR__.'/../config/follow.php'), 'follow');
38 38
     }
39 39
 }
Please login to merge, or discard this patch.