Remove *more* unused stuff
This commit is contained in:
parent
da992ff1b7
commit
cebb14f59c
52 changed files with 791 additions and 2984 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue