Skip to content

Commit

Permalink
Fixed a stupid error
Browse files Browse the repository at this point in the history
  • Loading branch information
kschroeder committed Dec 4, 2017
1 parent 143c12d commit a2be363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Auth0Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public function factory()
'persist_id_token' => $this->config->getValueFlag(self::CONFIG_PERSIST_ID_TOKEN),
'persist_access_token' => $this->config->getValueFlag(self::CONFIG_PERSIST_ACCESS_TOKEN),
'persist_refresh_token' => $this->config->getValueFlag(self::CONFIG_PERSIST_REFRESH_TOKEN),
'scope' => $this->config->getValueFlag(self::CONFIG_SCOPE),
'scope' => $this->config->getValue(self::CONFIG_SCOPE),
]);
return $auth0;
}
Expand Down

0 comments on commit a2be363

Please sign in to comment.