X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FRepository%2FIntroduction.php;h=de95229bd56dbcb8b9193ab1d2e5680caf10c77b;hb=5a8f2021584ed86489b056037ca1ed673f26270f;hp=4f9806312cc82138ef06ecc201507fb4e7bdb970;hpb=b46b72ad3b345ff271e435199fea795264e3b799;p=friendica.git diff --git a/src/Repository/Introduction.php b/src/Repository/Introduction.php index 4f9806312c..de95229bd5 100644 --- a/src/Repository/Introduction.php +++ b/src/Repository/Introduction.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Repository; @@ -35,28 +54,26 @@ class Introduction extends BaseRepository /** * @param array $condition - * @param array $order An optional array with order information - * @param int|array $limit Optional limit information - * + * @param array $params * @return Collection\Introductions * @throws \Exception */ - public function select(array $condition = [], array $order = [], $limit = null) + public function select(array $condition = [], array $params = []) { - return parent::select($condition, $order, $limit); + return parent::select($condition, $params); } /** - * @param array $condition - * @param array $order + * @param array $condition + * @param array $params + * @param int|null $min_id * @param int|null $max_id - * @param int|null $since_id - * @param int|array $limit + * @param int $limit * @return Collection\Introductions * @throws \Exception */ - public function selectByBoundaries(array $condition = [], array $order = [], int $max_id = null, int $since_id = null, int $limit = self::LIMIT) + public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT) { - return parent::selectByBoundaries($condition, $order, $max_id, $since_id, $limit); + return parent::selectByBoundaries($condition, $params, $min_id, $max_id, $limit); } }