Issue #49 fix make() should pass attributes as third parameter not second

This commit is contained in:
MKiselev
2017-08-09 01:25:43 +05:00
parent dbfe4308d5
commit 4c30ba66eb
4 changed files with 5 additions and 1 deletions

View File

@ -91,6 +91,7 @@ class SocialNetworkAuthenticateService implements ServiceInterface
/** @var SocialNetworkAccount $account */
$account = $this->controller->make(
SocialNetworkAccount::class,
[],
[
'provider' => $this->client->getId(),
'client_id' => $data['id'],
@ -119,6 +120,7 @@ class SocialNetworkAuthenticateService implements ServiceInterface
/** @var User $user */
$user = $this->controller->make(
User::class,
[],
[
'scenario' => 'connect',
'username' => $account->username,