@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | namespace Michaels\Manager; |
3 | 3 | |
4 | -use Michaels\Manager\Contracts\DecoderInterface; |
|
4 | +use Exception; |
|
5 | 5 | use Michaels\Manager\Bags\FileBag; |
6 | -use Michaels\Manager\Exceptions\UnsupportedFilesException; |
|
6 | +use Michaels\Manager\Contracts\DecoderInterface; |
|
7 | 7 | use Michaels\Manager\Exceptions\BadFileDataException; |
8 | -use Exception; |
|
8 | +use Michaels\Manager\Exceptions\UnsupportedFilesException; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Loads configuration files and converts them to php arrays using Decoders |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Michaels\Manager\Exceptions\NestingUnderNonArrayException; |
8 | 8 | use Michaels\Manager\Helpers; |
9 | 9 | use Michaels\Manager\Messages\NoItemFoundMessage; |
10 | -use Traversable; |
|
11 | 10 | |
12 | 11 | /** |
13 | 12 | * Manages complex, nested data |