minfix: removed debug from api.core.Request + added Err 'use' clause in module.release

This commit is contained in:
xdrm-brackets 2017-12-11 18:46:14 +01:00
parent c3de2c3114
commit 1e9d6f3aa8
2 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,7 @@
* *
---------------------------------------------------------*/ ---------------------------------------------------------*/
public function __construct($uri=null, $params=null, $forced_method=null){ public function __construct($uri=null, $params=null, $forced_method=null){
debug();
return $this->buildRequestObject($uri, $params, $forced_method); return $this->buildRequestObject($uri, $params, $forced_method);
} }

View File

@ -3,6 +3,7 @@
namespace api\module; namespace api\module;
use \error\core\Error; use \error\core\Error;
use \error\core\Err;
class release{ class release{