mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
13 lines
330 B
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());
|
|
}
|
|
}
|