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