1 | <?php |
||
18 | class UserProfile extends \yii\db\ActiveRecord |
||
19 | { |
||
20 | 9 | public function __construct($config = []) |
|
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 26 | public static function tableName() |
|
36 | |||
37 | /** |
||
38 | * @inheritdoc |
||
39 | */ |
||
40 | public function attributeLabels() |
||
49 | |||
50 | /** |
||
51 | * @return \yii\db\ActiveQuery |
||
52 | */ |
||
53 | public function getUser() |
||
57 | |||
58 | /** |
||
59 | * @return \yii\db\ActiveQuery |
||
60 | */ |
||
61 | public function getPhotoFile() |
||
67 | |||
68 | /** |
||
69 | * @inheritdoc |
||
70 | * @return \query\UserProfileQuery the active query used by this AR class. |
||
71 | */ |
||
72 | 11 | public static function find() |
|
76 | } |
||
77 |