Completed
Push — master ( 8d39d6...58e1d9 )
by Xeriab
02:50
created
src/FileParser/Ini.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
17
+use Exen\Konfig\Utils;
18 18
 
19 19
 class Ini extends AbstractFileParser
20 20
 {
Please login to merge, or discard this patch.
src/FileParser/Json.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16
-use Exen\Konfig\Exception\Exception;
17 15
 use Exen\Konfig\Exception\ParseException;
16
+use Exen\Konfig\Utils;
18 17
 
19 18
 class Json extends AbstractFileParser
20 19
 {
Please login to merge, or discard this patch.
src/FileParser/Neon.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
17
+use Exen\Konfig\Utils;
18 18
 
19 19
 use Nette\Neon\Neon as NeonParser;
20 20
 
Please login to merge, or discard this patch.
src/FileParser/Php.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
18 17
 use Exen\Konfig\Exception\UnsupportedFileFormatException;
18
+use Exen\Konfig\Utils;
19 19
 
20 20
 class Php extends AbstractFileParser
21 21
 {
Please login to merge, or discard this patch.
src/FileParser/Properties.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@
 block discarded – undo
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15 15
 use Exen\Konfig\Arr;
16
-use Exen\Konfig\Utils;
17 16
 use Exen\Konfig\Exception\Exception;
18 17
 use Exen\Konfig\Exception\ParseException;
18
+use Exen\Konfig\Utils;
19 19
 
20 20
 class Properties extends AbstractFileParser
21 21
 {
Please login to merge, or discard this patch.
src/FileParser/Toml.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
17
+use Exen\Konfig\Utils;
18 18
 
19 19
 use Yosymfony\Toml\Toml as TomlLib;
20 20
 
Please login to merge, or discard this patch.
src/FileParser/Xml.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
17
+use Exen\Konfig\Utils;
18 18
 
19 19
 class Xml extends AbstractFileParser
20 20
 {
Please login to merge, or discard this patch.
src/FileParser/Yaml.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig\FileParser;
14 14
 
15
-use Exen\Konfig\Utils;
16 15
 use Exen\Konfig\Exception\Exception;
17 16
 use Exen\Konfig\Exception\ParseException;
17
+use Exen\Konfig\Utils;
18 18
 
19 19
 use Symfony\Component\Yaml\Yaml as YamlParser;
20 20
 
Please login to merge, or discard this patch.
src/Konfig.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 
13 13
 namespace Exen\Konfig;
14 14
 
15
-use Exen\Konfig\Exception\Exception;
16 15
 use Exen\Konfig\Exception\EmptyDirectoryException;
16
+use Exen\Konfig\Exception\Exception;
17 17
 use Exen\Konfig\Exception\FileNotFoundException;
18 18
 use Exen\Konfig\Exception\UnsupportedFileFormatException;
19 19
 
Please login to merge, or discard this patch.