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/LastFMCurrent.php | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'app/View/Components/LastFMCurrent.php') diff --git a/app/View/Components/LastFMCurrent.php b/app/View/Components/LastFMCurrent.php index 712efbd..ebe029b 100644 --- a/app/View/Components/LastFMCurrent.php +++ b/app/View/Components/LastFMCurrent.php @@ -6,22 +6,19 @@ use Closure; use Illuminate\Contracts\View\View; use Illuminate\View\Component; -class LastFMCurrent extends Component -{ +class LastFMCurrent extends Component { public $track; /** * Create a new component instance. */ - public function __construct($track) - { + public function __construct($track) { $this->track = $track; } /** * Get the view / contents that represent the component. */ - public function render(): View|Closure|string - { - return view('components.lasfm-current'); + public function render(): View|Closure|string { + return view('components.lastfm-current'); } } -- cgit v1.2.3-54-g00ecf