aboutsummaryrefslogtreecommitdiff
path: root/app/View/Components/LastFMTrack.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/View/Components/LastFMTrack.php')
-rw-r--r--app/View/Components/LastFMTrack.php9
1 files changed, 3 insertions, 6 deletions
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');
}
}