Skip to content

Commit 20dca57

Browse files
authored
Merge pull request #58 from BinaryStudioAcademy/analysis-qMYoj4
Apply fixes from StyleCI
2 parents ec4a366 + 17dca76 commit 20dca57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/database/seeds/LikeTableSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function run()
2525
$now = Carbon::now();
2626

2727
$tweetLikes = $tweets->map(
28-
function(Tweet $tweet) use($users, $now) {
28+
function(Tweet $tweet) use ($users, $now) {
2929
$userIds = $users->shuffle()->shuffle()->take(self::LIKES_COUNT)->pluck('id');
3030

3131
return $userIds->map(
@@ -46,7 +46,7 @@ function(Comment $comment) use ($users, $now) {
4646
$userIds = $users->shuffle()->shuffle()->take(self::LIKES_COUNT)->pluck('id');
4747

4848
return $userIds->map(
49-
function(int $userId) use($comment, $now) {
49+
function(int $userId) use ($comment, $now) {
5050
return [
5151
'user_id' => $userId,
5252
'likeable_id' => $comment->id,

0 commit comments

Comments
 (0)