amnah\yii2\user\controllers\AuthController::setInfoTwitter PHP Method

setInfoTwitter() protected method

Set info for twitter registration
protected setInfoTwitter ( array $attributes ) : array
$attributes array
return array [$user, $profile]
    protected function setInfoTwitter($attributes)
    {
        /** @var \amnah\yii2\user\models\User $user */
        /** @var \amnah\yii2\user\models\Profile $profile */
        $user = $this->module->model("User");
        $profile = $this->module->model("Profile");
        $user->username = $attributes["screen_name"];
        $profile->full_name = $attributes["name"];
        return [$user, $profile];
    }