Completed
Push — master ( 5bcf65...fcd855 )
by Xeriab
05:48
created
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.
src/FileParser/Properties.php 2 patches
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.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
     /**
257 257
      * Loads in the given file and parses it.
258 258
      *
259
-     * @param string|bool|null $file File to load
259
+     * @param string $file File to load
260 260
      *
261 261
      * @return array The parsed file data
262 262
      *
Please login to merge, or discard this patch.
src/FileParser/Yaml.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
Please login to merge, or discard this patch.
src/FileParser/Ini.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
Please login to merge, or discard this patch.
src/FileParser/Json.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
Please login to merge, or discard this patch.
src/FileParser/Neon.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
Please login to merge, or discard this patch.
src/FileParser/Php.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * {@inheritdoc}
71 71
      *
72
-     * @return array Supported extensions
72
+     * @return string[] Supported extensions
73 73
      *
74 74
      * @since 0.1.0
75 75
      */
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
     /**
257 257
      * Loads in the given file and parses it.
258 258
      *
259
-     * @param string|bool|null $file File to load
259
+     * @param string $file File to load
260 260
      *
261 261
      * @return array The parsed file data
262 262
      *
Please login to merge, or discard this patch.
src/FileParser/Xml.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * {@inheritdoc}
73 73
      *
74
-     * @return array Supported extensions
74
+     * @return string[] Supported extensions
75 75
      *
76 76
      * @since 0.1.0
77 77
      */
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      *
86 86
      * @param string $file File to load
87 87
      *
88
-     * @return array|SimpleXMLElement The parsed file data
88
+     * @return \SimpleXMLElement The parsed file data
89 89
      *
90 90
      * @since              0.2.4
91 91
      * @codeCoverageIgnore
Please login to merge, or discard this patch.