@@ -81,7 +81,7 @@ |
||
81 | 81 | */ |
82 | 82 | protected function registerPublishes() |
83 | 83 | { |
84 | - $databasePath = __DIR__.'./../migrations'; |
|
84 | + $databasePath = __DIR__ . './../migrations'; |
|
85 | 85 | $this->loadMigrationsFrom($databasePath); |
86 | 86 | |
87 | 87 | if ($this->app->runningInConsole()) { |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | { |
309 | 309 | $userId = $this->getLikerUserId($userId); |
310 | 310 | |
311 | - return $query->whereHas('likesAndDislikes', function (Builder $innerQuery) use ($type, $userId) { |
|
311 | + return $query->whereHas('likesAndDislikes', function(Builder $innerQuery) use ($type, $userId) { |
|
312 | 312 | $innerQuery->where('user_id', $userId); |
313 | 313 | $innerQuery->where('type_id', $this->getLikeTypeId($type)); |
314 | 314 | }); |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | |
329 | 329 | return $query |
330 | 330 | ->select($likeable->getTable() . '.*', 'like_counter.count') |
331 | - ->leftJoin('like_counter', function (JoinClause $join) use ($likeable, $likeType) { |
|
331 | + ->leftJoin('like_counter', function(JoinClause $join) use ($likeable, $likeType) { |
|
332 | 332 | $join |
333 | 333 | ->on('like_counter.likeable_id', '=', "{$likeable->getTable()}.{$likeable->getKeyName()}") |
334 | 334 | ->where('like_counter.likeable_type', '=', $likeable->getMorphClass()) |
@@ -444,7 +444,7 @@ discard block |
||
444 | 444 | continue; |
445 | 445 | } |
446 | 446 | |
447 | - return $likeable->{$relation}->contains(function ($item) use ($userId, $typeId) { |
|
447 | + return $likeable->{$relation}->contains(function($item) use ($userId, $typeId) { |
|
448 | 448 | return $item->user_id == $userId && $item->type_id === $typeId; |
449 | 449 | }); |
450 | 450 | } |
@@ -37,10 +37,10 @@ |
||
37 | 37 | /** |
38 | 38 | * @access private |
39 | 39 | */ |
40 | - public function likeable(): MorphTo |
|
41 | - { |
|
42 | - return $this->morphTo(); |
|
43 | - } |
|
40 | + public function likeable(): MorphTo |
|
41 | + { |
|
42 | + return $this->morphTo(); |
|
43 | + } |
|
44 | 44 | /** |
45 | 45 | * Return the like's author. |
46 | 46 | */ |
@@ -11,8 +11,8 @@ |
||
11 | 11 | */ |
12 | 12 | class LikeCounter extends Model implements LikeCounterContract |
13 | 13 | { |
14 | - protected $table = 'like_counters'; |
|
15 | - protected $fillable = [ |
|
14 | + protected $table = 'like_counters'; |
|
15 | + protected $fillable = [ |
|
16 | 16 | 'type_id', |
17 | 17 | 'count', |
18 | 18 | ]; |