1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-02-14 19:11:49 +00:00
yii2-nomer/models/Proxy.php
2020-02-05 06:34:26 +03:00

21 lines
291 B
PHP

<?php
namespace app\models;
use yii\db\ActiveRecord;
/**
* @property integer $id
* @property string $host
* @property integer $port
*/
class Proxy extends ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'proxies';
}
}