From d7cd7bcbb898b4223f5cc555de3e509d0cfc18c2 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Mon, 18 Jul 2016 09:58:45 +0200 Subject: [PATCH] Fix path to constants.php in Command.php --- app/extensions/console/Command.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/extensions/console/Command.php b/app/extensions/console/Command.php index 27f1a182e..778884a9c 100755 --- a/app/extensions/console/Command.php +++ b/app/extensions/console/Command.php @@ -21,6 +21,8 @@ namespace app\extensions\console; +use lithium\data\DocumentSchema; + class Command extends \lithium\console\Command { protected $_classes = [ @@ -31,7 +33,7 @@ class Command extends \lithium\console\Command { $defaults = ['request' => null, 'response' => [], 'classes' => $this->_classes]; parent::__construct($config + $defaults); - require_once NN_ROOT . 'constants.php'; + require_once NN_LIB . 'constants.php'; } public function info($text)