1 | <?php |
||
17 | class UserProfile extends \yii\db\ActiveRecord |
||
18 | { |
||
19 | public function __construct($config = []) |
||
27 | 9 | ||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public static function tableName() |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | public function attributeLabels() |
||
47 | |||
48 | /** |
||
49 | * @return \yii\db\ActiveQuery |
||
50 | */ |
||
51 | public function getUser() |
||
55 | |||
56 | /** |
||
57 | * @return \yii\db\ActiveQuery |
||
58 | */ |
||
59 | public function getPhotoFile() |
||
65 | |||
66 | /** |
||
67 | * @inheritdoc |
||
68 | * @return \app\models\query\UserProfileQuery The active query used by this AR class |
||
69 | */ |
||
70 | public static function find() |
||
74 | } |
||
75 |