Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed Jun 3, 2017
1 parent d17a7dd commit 094ee83
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.*",
Expand Down
2 changes: 1 addition & 1 deletion src/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/Slim.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
2 changes: 1 addition & 1 deletion src/base/Container.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace slimExt\base;

use inhere\library\exceptions\LogicException;
use inhere\exceptions\LogicException;
use Slim\Container as SlimContainer;

/**
Expand Down
4 changes: 2 additions & 2 deletions src/base/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/database/AbstractDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

namespace slimExt\database;

use inhere\library\exceptions\InvalidArgumentException;
use inhere\exceptions\InvalidArgumentException;
use Slim;
use PDO;
use PDOStatement;
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/TwigHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace slimExt\helpers;

use inhere\library\asset\AssetLoad;
use inhere\library\exceptions\UnknownCalledException;
use inhere\exceptions\UnknownCalledException;
use Slim;

/**
Expand Down

0 comments on commit 094ee83

Please sign in to comment.