aboutsummaryrefslogtreecommitdiff
path: root/app/View/Components/LastFMTop.php
diff options
context:
space:
mode:
authorRoscoeDeWah <roscoe@wah.moe>2025-01-16 13:57:12 +0000
committerRoscoeDeWah <roscoe@wah.moe>2025-01-16 13:57:12 +0000
commitcebb14f59cb54b24861a9aef03b9fcbf57465967 (patch)
treee0ab70bbba4ebb4821fb9a354eef55d30da90558 /app/View/Components/LastFMTop.php
parentda992ff1b780bf687ba2093d36c2def943296ec5 (diff)
Remove *more* unused stuff
Diffstat (limited to 'app/View/Components/LastFMTop.php')
-rw-r--r--app/View/Components/LastFMTop.php9
1 files changed, 3 insertions, 6 deletions
diff --git a/app/View/Components/LastFMTop.php b/app/View/Components/LastFMTop.php
index b8de2eb..da69710 100644
--- a/app/View/Components/LastFMTop.php
+++ b/app/View/Components/LastFMTop.php
@@ -6,22 +6,19 @@ use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
-class LastFMTop extends Component
-{
+class LastFMTop extends Component {
public $tracks;
/**
* Create a new component instance.
*/
- public function __construct($tracks)
- {
+ public function __construct($tracks) {
$this->tracks = $tracks;
}
/**
* Get the view / contents that represent the component.
*/
- public function render(): View|Closure|string
- {
+ public function render(): View|Closure|string {
return view('components.lastfm-top');
}
}