1
1
Fork 0
mirror of https://github.com/openvk/openvk synced 2025-01-14 03:52:59 +03:00
openvk/Web/Models/Repositories/Polls.php

23 lines
485 B
PHP
Raw Normal View History

2022-10-11 19:04:43 +03:00
<?php declare(strict_types=1);
namespace openvk\Web\Models\Repositories;
use Chandler\Database\DatabaseConnection;
use openvk\Web\Models\Entities\Poll;
class Polls
{
private $polls;
function __construct()
{
$this->polls = DatabaseConnection::i()->getContext()->table("polls");
}
function get(int $id): ?Poll
{
$poll = $this->polls->get($id);
if(!$poll)
return NULL;
return new Poll($poll);
}
}