context = DatabaseConnection::i()->getContext(); $this->clubs = $this->context->table("groups"); } private function toClub(?ActiveRow $ar): ?Club { return is_null($ar) ? NULL : new Club($ar); } function getByShortURL(string $url): ?Club { return $this->toClub($this->clubs->where("shortcode", $url)->fetch()); } function get(int $id): ?Club { return $this->toClub($this->clubs->get($id)); } function find(string $query, int $page = 1, ?int $perPage = NULL): \Traversable { $query = "%$query%"; $result = $this->clubs->where("name LIKE ? OR about LIKE ?", $query, $query); return new Util\EntityStream("Club", $result); } use \Nette\SmartObject; }