1 | <?php |
||
13 | class OauthClientsSignupUser extends \yii\db\ActiveRecord |
||
14 | { |
||
15 | /** |
||
16 | * @inheritdoc |
||
17 | */ |
||
18 | 2 | public static function tableName() |
|
19 | { |
||
20 | 2 | return '{{%oauth_clients_signup_user}}'; |
|
21 | } |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | 1 | public function rules() |
|
27 | { |
||
28 | return [ |
||
29 | 1 | [['client_id'], 'string', 'max' => 36], |
|
30 | ]; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | public function attributeLabels() |
||
43 | } |
||
44 |