Remove *more* unused stuff

This commit is contained in:
Roscoe 2025-01-16 13:57:12 +00:00
commit cebb14f59c
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
52 changed files with 791 additions and 2984 deletions

View file

@ -6,15 +6,13 @@
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 @@ public function __construct($track, $count)
/**
* 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');
}
}