Skip to content

Commit c2306ac

Browse files
committed
Apply StyleCI fixes
1 parent 4283504 commit c2306ac

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

app/Helpers/ReceivesReplies.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace App\Helpers;
44

5-
use App\Models\Like;
65
use App\Models\Reply;
76
use Illuminate\Database\Eloquent\Relations\MorphMany;
87

tests/Components/Jobs/DeleteThreadTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function we_can_delete_a_thread_and_its_replies()
2222
factory(Like::class)->states('reply')->create(['likeable_id' => $reply->id()]);
2323

2424
$this->dispatch(new DeleteThread($thread));
25-
25+
2626
$this->assertDatabaseMissing('threads', ['id' => $thread->id()]);
2727
$this->assertDatabaseMissing('replies', ['replyable_id' => $thread->id()]);
2828
$this->assertDatabaseMissing('likes', ['likeable_type' => 'threads', 'likeable_id' => $thread->id()]);

0 commit comments

Comments
 (0)