Skip to content

Commit

Permalink
Merge pull request #207 from auth0/5.x.x-dev
Browse files Browse the repository at this point in the history
5.x.x dev
  • Loading branch information
glena authored Aug 30, 2017
2 parents a141577 + e0a37e8 commit 5d0c548
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
7 changes: 0 additions & 7 deletions src/API/Management/Users.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ public function search($params = array()) {
return $client->call();
}

public function deleteAll() {

return $this->apiClient->delete()
->users()
->call();
}

public function delete($user_id) {

return $this->apiClient->delete()
Expand Down
2 changes: 1 addition & 1 deletion src/Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function __construct(array $config) {
$this->setStore(new SessionStore());
}

$this->authentication = new Authentication ($this->domain, $this->client_id, $this->client_secret, $this->guzzleOptions);
$this->authentication = new Authentication ($this->domain, $this->client_id, $this->client_secret, $this->audience, $this->scope, $this->guzzleOptions);

$this->user = $this->store->get("user");
$this->access_token = $this->store->get("access_token");
Expand Down

0 comments on commit 5d0c548

Please sign in to comment.