From cebb14f59cb54b24861a9aef03b9fcbf57465967 Mon Sep 17 00:00:00 2001 From: RoscoeDeWah Date: Thu, 16 Jan 2025 13:57:12 +0000 Subject: Remove *more* unused stuff --- app/View/Components/LastFMTrack.php | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'app/View/Components/LastFMTrack.php') diff --git a/app/View/Components/LastFMTrack.php b/app/View/Components/LastFMTrack.php index 737b5e3..da77fe2 100644 --- a/app/View/Components/LastFMTrack.php +++ b/app/View/Components/LastFMTrack.php @@ -6,15 +6,13 @@ use Closure; use Illuminate\Contracts\View\View; use Illuminate\View\Component; -class LastFMTrack extends Component -{ +class LastFMTrack extends Component { public $track; public $count; /** * Create a new component instance. */ - public function __construct($track, $count) - { + public function __construct($track, $count) { $this->track = $track; $this->count = $count; } @@ -22,8 +20,7 @@ class LastFMTrack extends Component /** * Get the view / contents that represent the component. */ - public function render(): View|Closure|string - { + public function render(): View|Closure|string { return view('components.lastfm-track'); } } -- cgit v1.2.3-54-g00ecf