X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FRepository%2FIntroduction.php;h=de95229bd56dbcb8b9193ab1d2e5680caf10c77b;hb=5a8f2021584ed86489b056037ca1ed673f26270f;hp=03d3e59aebf424c7005bdf6701bb5379681d12f6;hpb=6b8db5ad1333e2b430da3a771d9a962d44d4b6fc;p=friendica.git diff --git a/src/Repository/Introduction.php b/src/Repository/Introduction.php index 03d3e59aeb..de95229bd5 100644 --- a/src/Repository/Introduction.php +++ b/src/Repository/Introduction.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Repository; @@ -6,11 +25,6 @@ use Friendica\BaseRepository; use Friendica\Collection; use Friendica\Model; -/** - * @method Model\Introduction selectFirst(array $condition) - * @method Collection\Introductions select(array $condition = [], array $params = []) - * @method Collection\Introductions selectByBoundaries(array $condition = [], array $params = [], int $max_id = null, int $since_id = null, int $limit = self::LIMIT) - */ class Introduction extends BaseRepository { protected static $table_name = 'intro'; @@ -27,4 +41,39 @@ class Introduction extends BaseRepository { return new Model\Introduction($this->dba, $this->logger, $this, $data); } + + /** + * @param array $condition + * @return Model\Introduction + * @throws \Friendica\Network\HTTPException\NotFoundException + */ + public function selectFirst(array $condition) + { + return parent::selectFirst($condition); + } + + /** + * @param array $condition + * @param array $params + * @return Collection\Introductions + * @throws \Exception + */ + public function select(array $condition = [], array $params = []) + { + return parent::select($condition, $params); + } + + /** + * @param array $condition + * @param array $params + * @param int|null $min_id + * @param int|null $max_id + * @param int $limit + * @return Collection\Introductions + * @throws \Exception + */ + public function selectByBoundaries(array $condition = [], array $params = [], int $min_id = null, int $max_id = null, int $limit = self::LIMIT) + { + return parent::selectByBoundaries($condition, $params, $min_id, $max_id, $limit); + } }