@@ -9,8 +9,8 @@ |
||
| 9 | 9 | use yii\base\InvalidConfigException; |
| 10 | 10 | use yii\base\InvalidParamException; |
| 11 | 11 | use yii\base\UnknownClassException; |
| 12 | -use yii\log\Logger; |
|
| 13 | 12 | use yii\di\Container; |
| 13 | +use yii\log\Logger; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Gets the application start timestamp. |
@@ -8,9 +8,9 @@ |
||
| 8 | 8 | namespace yii\db\sqlite; |
| 9 | 9 | |
| 10 | 10 | use yii\base\NotSupportedException; |
| 11 | +use yii\db\ColumnSchema; |
|
| 11 | 12 | use yii\db\Expression; |
| 12 | 13 | use yii\db\TableSchema; |
| 13 | -use yii\db\ColumnSchema; |
|
| 14 | 14 | use yii\db\Transaction; |
| 15 | 15 | |
| 16 | 16 | /** |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | namespace DebugBar\DataCollector; |
| 12 | 12 | |
| 13 | 13 | use Exception; |
| 14 | -use Symfony\Component\Debug\Exception\FatalThrowableError; |
|
| 15 | 14 | |
| 16 | 15 | /** |
| 17 | 16 | * Collects info about exceptions |
@@ -1,8 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace App\Cache; |
| 3 | 3 | |
| 4 | -use App\Exceptions\CacheException; |
|
| 5 | - |
|
| 6 | 4 | /** |
| 7 | 5 | * Base Caching Class |
| 8 | 6 | * @package YetiForce.App |
@@ -1,9 +1,9 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | namespace DebugBar\DataCollector\PDO; |
| 3 | 3 | |
| 4 | +use DebugBar\DataCollector\PDO\TraceablePDOStatement; |
|
| 4 | 5 | use PDO; |
| 5 | 6 | use PDOException; |
| 6 | -use DebugBar\DataCollector\PDO\TraceablePDOStatement; |
|
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * A PDO proxy which traces statements |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | namespace App\Debug; |
| 3 | 3 | |
| 4 | 4 | use DebugBar\DataCollector\DataCollector; |
| 5 | -use DebugBar\DataCollector\Renderable; |
|
| 6 | -use DebugBar\DataFormatter\DataFormatterInterface; |
|
| 7 | 5 | use DebugBar\DataCollector\DataCollectorInterface; |
| 8 | 6 | use DebugBar\DataCollector\MessagesAggregateInterface; |
| 7 | +use DebugBar\DataCollector\Renderable; |
|
| 8 | +use DebugBar\DataFormatter\DataFormatterInterface; |
|
| 9 | 9 | |
| 10 | 10 | /** |
| 11 | 11 | * Provides a way to log messages |
@@ -6,12 +6,12 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | namespace yii\base; |
| 8 | 8 | |
| 9 | -use Yii; |
|
| 10 | 9 | use ArrayAccess; |
| 11 | -use ArrayObject; |
|
| 12 | 10 | use ArrayIterator; |
| 13 | -use ReflectionClass; |
|
| 11 | +use ArrayObject; |
|
| 14 | 12 | use IteratorAggregate; |
| 13 | +use ReflectionClass; |
|
| 14 | +use Yii; |
|
| 15 | 15 | use yii\helpers\Inflector; |
| 16 | 16 | use yii\validators\RequiredValidator; |
| 17 | 17 | use yii\validators\Validator; |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | namespace yii\base; |
| 8 | 8 | |
| 9 | -use yii\helpers\StringHelper; |
|
| 10 | 9 | use Yii; |
| 10 | +use yii\helpers\StringHelper; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Security provides a set of methods to handle common security-related tasks. |
@@ -6,8 +6,8 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | namespace yii\base; |
| 8 | 8 | |
| 9 | -use Yii; |
|
| 10 | 9 | use ReflectionClass; |
| 10 | +use Yii; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Widget is the base class for widgets. |