コード例 #1
0
ファイル: Profile.php プロジェクト: fabristyle/yii2-user-1
 public function getUser()
 {
     return $this->hasOne(User::className(), ['id' => 'uid']);
 }
コード例 #2
0
 public function rules()
 {
     return [['email', 'required'], ['email', 'email'], ['email', 'exist', 'targetClass' => User::className(), 'message' => 'Email not found in the system!']];
 }