@@ -2,10 +2,9 @@ |
||
2 | 2 | |
3 | 3 | namespace Noodlehaus; |
4 | 4 | |
5 | +use Noodlehaus\Exception\EmptyDirectoryException; |
|
5 | 6 | use Noodlehaus\Exception\FileNotFoundException; |
6 | 7 | use Noodlehaus\Exception\UnsupportedFormatException; |
7 | -use Noodlehaus\Exception\EmptyDirectoryException; |
|
8 | -use InvalidArgumentException; |
|
9 | 8 | use Noodlehaus\Parser\ParserInterface; |
10 | 9 | use Noodlehaus\Writer\WriterInterface; |
11 | 10 |
@@ -35,6 +35,9 @@ |
||
35 | 35 | return $this->parse($config); |
36 | 36 | } |
37 | 37 | |
38 | + /** |
|
39 | + * @param string $txtProperties |
|
40 | + */ |
|
38 | 41 | private function parse($txtProperties) |
39 | 42 | { |
40 | 43 | $result = []; |
@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace Noodlehaus\Parser; |
4 | 4 | |
5 | -use Noodlehaus\Exception\ParseException; |
|
6 | - |
|
7 | 5 | /** |
8 | 6 | * Properties parser. |
9 | 7 | * |