Completed
Push — master ( 965662...ac7f34 )
by Xeriab
07:12
created
src/FileParser/Ini.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
     /**
60 60
      * {@inheritdoc}
61 61
      *
62
-     * @return array Supported extensions
62
+     * @return string[] Supported extensions
63 63
      *
64 64
      * @since 0.1.0
65 65
      */
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
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     /**
71 71
      * {@inheritdoc}
72 72
      *
73
-     * @return array Supported extensions
73
+     * @return string[] Supported extensions
74 74
      *
75 75
      * @since 0.1.0
76 76
      */
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
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * {@inheritdoc}
70 70
      *
71
-     * @return array Supported extensions
71
+     * @return string[] Supported extensions
72 72
      *
73 73
      * @since 0.1.0
74 74
      */
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
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * {@inheritdoc}
83 83
      *
84
-     * @return array Supported extensions
84
+     * @return string[] Supported extensions
85 85
      *
86 86
      * @since 0.1.0
87 87
      */
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      * Loads in the given file and parses it.
95 95
      *
96
-     * @param string|bool|null $file File to load
96
+     * @param string $file File to load
97 97
      *
98 98
      * @return array The parsed file data
99 99
      *
Please login to merge, or discard this patch.
src/FileParser/Properties.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 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.
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/Utils.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      *
37 37
      * @param string $file The path to the file
38 38
      *
39
-     * @return             mixed The results of the include
39
+     * @return             string The results of the include
40 40
      * @since              0.2.4
41 41
      * @codeCoverageIgnore
42 42
      */
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      * will return the result of the closure, if not, it will simply return the
65 65
      * value.
66 66
      *
67
-     * @param mixed $var The value to get
67
+     * @param string|null $var The value to get
68 68
      *
69 69
      * @return             mixed
70 70
      * @since              0.1.0
Please login to merge, or discard this patch.