Skip to content

Commit ec4a366

Browse files
committed
Add spaces
1 parent b422c13 commit ec4a366

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
@@ -29,7 +29,7 @@ function(Tweet $tweet) use($users, $now) {
2929
$userIds = $users->shuffle()->shuffle()->take(self::LIKES_COUNT)->pluck('id');
3030

3131
return $userIds->map(
32-
function(int $userId) use($tweet, $now) {
32+
function(int $userId) use ($tweet, $now) {
3333
return [
3434
'user_id' => $userId,
3535
'likeable_id' => $tweet->id,
@@ -42,7 +42,7 @@ function(int $userId) use($tweet, $now) {
4242
);
4343

4444
$commentLikes = $comments->map(
45-
function(Comment $comment) use($users, $now) {
45+
function(Comment $comment) use ($users, $now) {
4646
$userIds = $users->shuffle()->shuffle()->take(self::LIKES_COUNT)->pluck('id');
4747

4848
return $userIds->map(

0 commit comments

Comments
 (0)