mirror of
https://github.com/janickiy/yii2-nomer
synced 2025-02-14 19:11:49 +00:00
21 lines
291 B
PHP
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';
|
|
}
|
|
}
|