This commit is contained in:
DariusIII
2023-03-27 16:51:35 +02:00
parent 5238b59f1c
commit 2472f979c8
3 changed files with 3 additions and 22 deletions
-16
View File
@@ -20,7 +20,6 @@ use Illuminate\Support\Facades\DB;
class RSS extends ApiController
{
/** Releases class.
* @var Releases
*/
public Releases $releases;
@@ -33,13 +32,6 @@ class RSS extends ApiController
}
/**
* @param $cat
* @param $videosId
* @param $aniDbID
* @param int $userID
* @param int $airDate
* @param int $limit
* @param int $offset
* @return Release[]|Collection|mixed
*/
public function getRss($cat, $videosId, $aniDbID, int $userID = 0, int $airDate = -1, int $limit = 100, int $offset = 0)
@@ -108,12 +100,7 @@ class RSS extends ApiController
}
/**
* @param int $limit
* @param int $userID
* @param array $excludedCats
* @param int $airDate
* @return Builder|Collection
*
*/
public function getShowsRss(int $limit, int $userID = 0, array $excludedCats = [], int $airDate = -1)
{
@@ -167,9 +154,6 @@ class RSS extends ApiController
}
/**
* @param int $limit
* @param int $userID
* @param array $excludedCats
* @return Release[]|Collection|mixed
*/
public function getMyMoviesRss(int $limit, int $userID = 0, array $excludedCats = [])