From da992ff1b780bf687ba2093d36c2def943296ec5 Mon Sep 17 00:00:00 2001 From: RoscoeDeWah Date: Thu, 16 Jan 2025 13:42:14 +0000 Subject: Remove unused stuff --- app/View/Components/CurrentTrack.php | 27 --------------------------- app/View/Components/LastFMCurrent.php | 27 +++++++++++++++++++++++++++ app/View/Components/LastFMTop.php | 27 +++++++++++++++++++++++++++ app/View/Components/LastFMTrack.php | 29 +++++++++++++++++++++++++++++ app/View/Components/TopTracks.php | 27 --------------------------- app/View/Components/Track.php | 29 ----------------------------- 6 files changed, 83 insertions(+), 83 deletions(-) delete mode 100644 app/View/Components/CurrentTrack.php create mode 100644 app/View/Components/LastFMCurrent.php create mode 100644 app/View/Components/LastFMTop.php create mode 100644 app/View/Components/LastFMTrack.php delete mode 100644 app/View/Components/TopTracks.php delete mode 100644 app/View/Components/Track.php (limited to 'app') diff --git a/app/View/Components/CurrentTrack.php b/app/View/Components/CurrentTrack.php deleted file mode 100644 index 337809a..0000000 --- a/app/View/Components/CurrentTrack.php +++ /dev/null @@ -1,27 +0,0 @@ -track = $track; - } - - /** - * Get the view / contents that represent the component. - */ - public function render(): View|Closure|string - { - return view('components.current-track'); - } -} diff --git a/app/View/Components/LastFMCurrent.php b/app/View/Components/LastFMCurrent.php new file mode 100644 index 0000000..712efbd --- /dev/null +++ b/app/View/Components/LastFMCurrent.php @@ -0,0 +1,27 @@ +track = $track; + } + + /** + * Get the view / contents that represent the component. + */ + public function render(): View|Closure|string + { + return view('components.lasfm-current'); + } +} diff --git a/app/View/Components/LastFMTop.php b/app/View/Components/LastFMTop.php new file mode 100644 index 0000000..b8de2eb --- /dev/null +++ b/app/View/Components/LastFMTop.php @@ -0,0 +1,27 @@ +tracks = $tracks; + } + + /** + * Get the view / contents that represent the component. + */ + public function render(): View|Closure|string + { + return view('components.lastfm-top'); + } +} diff --git a/app/View/Components/LastFMTrack.php b/app/View/Components/LastFMTrack.php new file mode 100644 index 0000000..737b5e3 --- /dev/null +++ b/app/View/Components/LastFMTrack.php @@ -0,0 +1,29 @@ +track = $track; + $this->count = $count; + } + + /** + * Get the view / contents that represent the component. + */ + public function render(): View|Closure|string + { + return view('components.lastfm-track'); + } +} diff --git a/app/View/Components/TopTracks.php b/app/View/Components/TopTracks.php deleted file mode 100644 index 768ce33..0000000 --- a/app/View/Components/TopTracks.php +++ /dev/null @@ -1,27 +0,0 @@ -tracks = $tracks; - } - - /** - * Get the view / contents that represent the component. - */ - public function render(): View|Closure|string - { - return view('components.top-tracks'); - } -} diff --git a/app/View/Components/Track.php b/app/View/Components/Track.php deleted file mode 100644 index b9f628f..0000000 --- a/app/View/Components/Track.php +++ /dev/null @@ -1,29 +0,0 @@ -track = $track; - $this->count = $count; - } - - /** - * Get the view / contents that represent the component. - */ - public function render(): View|Closure|string - { - return view('components.track'); - } -} -- cgit v1.2.3-54-g00ecf