Skip to content

Commit

Permalink
Added setter for $debugger (#149)
Browse files Browse the repository at this point in the history
Added setter for debugger
  • Loading branch information
AxaliaN authored and cocojoe committed Jun 22, 2017
1 parent b46129b commit 00fed26
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/Auth0.php
Original file line number Diff line number Diff line change
Expand Up @@ -422,4 +422,12 @@ public function setStore(StoreInterface $store) {
$this->store = $store;
return $this;
}
}

/**
* @param \Closure $debugger
*/
public function setDebugger(\Closure $debugger)
{
$this->debugger = $debugger;
}
}

0 comments on commit 00fed26

Please sign in to comment.