1
1
Fork 0
mirror of https://github.com/openvk/openvk synced 2025-01-13 03:22:58 +03:00
openvk/Web/Models/Repositories/SupportAliases.php

13 lines
330 B
PHP

<?php declare(strict_types=1);
namespace openvk\Web\Models\Repositories;
class SupportAliases extends Repository
{
protected $tableName = "support_names";
protected $modelName = "SupportAlias";
function get(int $agent)
{
return $this->toEntity($this->table->where("agent", $agent)->fetch());
}
}