polls = DatabaseConnection::i()->getContext()->table("polls"); } function get(int $id): ?Poll { $poll = $this->polls->get($id); if(!$poll) return NULL; return new Poll($poll); } }