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 $max_id * @param int|null $since_id * @param int $limit * @return Collection\Introductions * @throws \Exception */ public function selectByBoundaries(array $condition = [], array $params = [], int $max_id = null, int $since_id = null, int $limit = self::LIMIT) { return parent::selectByBoundaries($condition, $params, $max_id, $since_id, $limit); } }