From 00fed262ea99940705279d75ea315d49f57753a3 Mon Sep 17 00:00:00 2001 From: Michel Maas Date: Thu, 22 Jun 2017 22:35:20 +0200 Subject: [PATCH] Added setter for $debugger (#149) Added setter for debugger --- src/Auth0.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Auth0.php b/src/Auth0.php index ecf8bfc2..83986cf7 100644 --- a/src/Auth0.php +++ b/src/Auth0.php @@ -422,4 +422,12 @@ public function setStore(StoreInterface $store) { $this->store = $store; return $this; } -} \ No newline at end of file + + /** + * @param \Closure $debugger + */ + public function setDebugger(\Closure $debugger) + { + $this->debugger = $debugger; + } +}