Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
HDVinnie authored and StyleCIBot committed Sep 21, 2021
1 parent 4d80148 commit 2cd5c7a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Http/Livewire/SmallBookmarkButton.php
Expand Up @@ -50,7 +50,7 @@ final public function destroy(): void
$this->dispatchBrowserEvent('success', ['type' => 'success', 'message' => 'Torrent Has Been Unbookmarked Successfully!']);
}

final public function render(): \Illuminate\Contracts\View\Factory | \Illuminate\Contracts\View\View | \Illuminate\Contracts\Foundation\Application
final public function render(): \Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View|\Illuminate\Contracts\Foundation\Application
{
return \view('livewire.small-bookmark-button');
}
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Livewire/TicketSearch.php
Expand Up @@ -60,8 +60,8 @@ final public function updatingShow(): void

final public function toggleProperties($property): void
{
if($property === 'show') {
$this->show = !$this->show;
if ($property === 'show') {
$this->show = ! $this->show;
}
}

Expand Down
6 changes: 3 additions & 3 deletions app/Http/Livewire/TorrentListSearch.php
Expand Up @@ -13,15 +13,15 @@

namespace App\Http\Livewire;

use App\Models\Wish;
use App\Models\History;
use App\Models\Bookmark;
use App\Models\Category;
use App\Models\History;
use App\Models\Keyword;
use App\Models\Bookmark;
use App\Models\PersonalFreeleech;
use App\Models\PlaylistTorrent;
use App\Models\Torrent;
use App\Models\User;
use App\Models\Wish;
use Illuminate\Support\Facades\DB;
use Livewire\Component;
use Livewire\WithPagination;
Expand Down

0 comments on commit 2cd5c7a

Please sign in to comment.