Completed
Push — master ( 2830aa...591d0b )
by Carlos
11:07 queued 08:22
created
src/Traits/CanBeFollowed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
                     ->wherePivot('relation', '=', Follow::RELATION_FOLLOW)
48 48
                     ->withPivot('followable_type', 'relation', 'created_at')
49 49
                     ->addSelect("{$userTable}.*", DB::raw("pivot_followables.{$foreignKey} IS NOT NULL AS pivot_each_other"))
50
-                    ->leftJoin("{$table} as pivot_followables", function ($join) use ($table, $class, $foreignKey) {
50
+                    ->leftJoin("{$table} as pivot_followables", function($join) use ($table, $class, $foreignKey) {
51 51
                         $join->on('pivot_followables.followable_type', '=', DB::raw(\addcslashes("'{$class}'", '\\')))
52 52
                             ->on('pivot_followables.followable_id', '=', "{$table}.{$foreignKey}")
53 53
                             ->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
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
                     ->wherePivot('relation', '=', Follow::RELATION_FOLLOW)
106 106
                     ->withPivot('followable_type', 'relation', 'created_at')
107 107
                     ->addSelect("{$targetTable}.*", DB::raw("pivot_followables.{$foreignKey} IS NOT NULL AS pivot_each_other"))
108
-                    ->leftJoin("{$table} as pivot_followables", function ($join) use ($table, $class, $foreignKey) {
108
+                    ->leftJoin("{$table} as pivot_followables", function($join) use ($table, $class, $foreignKey) {
109 109
                         $join->on('pivot_followables.followable_type', '=', DB::raw(\addcslashes("'{$class}'", '\\')))
110 110
                             ->on('pivot_followables.followable_id', '=', "{$table}.{$foreignKey}")
111 111
                             ->on("pivot_followables.{$foreignKey}", '=', "{$table}.followable_id");
Please login to merge, or discard this patch.