diff --git a/composer.json b/composer.json index 0ab9003..da4c501 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,8 @@ "windwalker/query": "^3.0", "windwalker/compare": "^3.0", "symfony/console": "^3.0", - "inhere/library": "dev-master" + "inhere/library": "dev-master", + "inhere/library-plus": "dev-master" }, "require-dev": { "filp/whoops": "2.*", diff --git a/src/AbstractController.php b/src/AbstractController.php index 6152132..a135e1f 100644 --- a/src/AbstractController.php +++ b/src/AbstractController.php @@ -8,7 +8,7 @@ namespace slimExt; -use inhere\library\exceptions\NotFoundException; +use inhere\exceptions\NotFoundException; use Slim; use slimExt\base\Request; use slimExt\base\Response; diff --git a/src/Slim.php b/src/Slim.php index 2603739..35755ea 100644 --- a/src/Slim.php +++ b/src/Slim.php @@ -149,7 +149,7 @@ public static function call($id, $params = []) * @param string $class * @param array $params * @return mixed - * @throws \inhere\library\exceptions\LogicException + * @throws \inhere\exceptions\LogicException */ public static function make($id, $class = null, $params = null) { diff --git a/src/base/Container.php b/src/base/Container.php index b88abe2..f64fc1b 100644 --- a/src/base/Container.php +++ b/src/base/Container.php @@ -8,7 +8,7 @@ namespace slimExt\base; -use inhere\library\exceptions\LogicException; +use inhere\exceptions\LogicException; use Slim\Container as SlimContainer; /** diff --git a/src/base/User.php b/src/base/User.php index 2e74362..07cc0ed 100644 --- a/src/base/User.php +++ b/src/base/User.php @@ -12,8 +12,8 @@ use inhere\library\helpers\ObjectHelper; use Psr\Http\Message\ResponseInterface; use Slim; -use inhere\library\exceptions\InvalidArgumentException; -use inhere\library\exceptions\InvalidConfigException; +use inhere\exceptions\InvalidArgumentException; +use inhere\exceptions\InvalidConfigException; /** * Class User diff --git a/src/database/AbstractDriver.php b/src/database/AbstractDriver.php index 0b875d8..432d8a4 100644 --- a/src/database/AbstractDriver.php +++ b/src/database/AbstractDriver.php @@ -8,7 +8,7 @@ namespace slimExt\database; -use inhere\library\exceptions\InvalidArgumentException; +use inhere\exceptions\InvalidArgumentException; use Slim; use PDO; use PDOStatement; diff --git a/src/helpers/TwigHelper.php b/src/helpers/TwigHelper.php index 315ed90..c62531e 100644 --- a/src/helpers/TwigHelper.php +++ b/src/helpers/TwigHelper.php @@ -6,7 +6,7 @@ namespace slimExt\helpers; use inhere\library\asset\AssetLoad; -use inhere\library\exceptions\UnknownCalledException; +use inhere\exceptions\UnknownCalledException; use Slim; /**