From 9dd712045abb8032360179738d707d5ca208773d Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 18 Jun 2018 20:03:21 +0200 Subject: [PATCH] app/library/Services.php: adding debugger service. --- app/library/Services.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/library/Services.php b/app/library/Services.php index 2edb1b4..19b1ccb 100644 --- a/app/library/Services.php +++ b/app/library/Services.php @@ -52,6 +52,9 @@ class Services extends DiDefault $this->set($service, $method->getClosure($this)); } } + + // Simple services + $this->setShared('debugger', '\Phalcon\Debug'); } protected function _initSharedConfig()