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

setInfoGoogle() protected method

Set info for google registration
protected setInfoGoogle ( array $attributes ) : array
$attributes array
return array [$user, $profile]
    protected function setInfoGoogle($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->email = $attributes["emails"][0]["value"];
        $profile->full_name = "{$attributes["name"]["givenName"]} {$attributes["name"]["familyName"]}";
        return [$user, $profile];
    }