@@ -137,7 +137,7 @@ |
||
137 | 137 | * Gets a parser for a given file extension |
138 | 138 | * |
139 | 139 | * @param string $ext |
140 | - * @return Konfig\FileParser |
|
140 | + * @return FileParser |
|
141 | 141 | * @throws UnsupportedFileFormatException If `$path` is an unsupported file format |
142 | 142 | */ |
143 | 143 | private function getParser($ext) |
@@ -12,11 +12,11 @@ |
||
12 | 12 | |
13 | 13 | namespace Exen\Konfig; |
14 | 14 | |
15 | +use Exen\Konfig\Arr; |
|
15 | 16 | use Exen\Konfig\Exception; |
16 | 17 | use Exen\Konfig\Exception\EmptyDirectoryException; |
17 | 18 | use Exen\Konfig\Exception\FileNotFoundException; |
18 | 19 | use Exen\Konfig\Exception\UnsupportedFileFormatException; |
19 | -use Exen\Konfig\Arr; |
|
20 | 20 | |
21 | 21 | final class Konfig extends AbstractKonfig |
22 | 22 | { |
@@ -180,7 +180,7 @@ |
||
180 | 180 | * Un-sets dot-notated key from an array |
181 | 181 | * |
182 | 182 | * @param array $array The search array |
183 | - * @param mixed $key The dot-notated key or array of keys |
|
183 | + * @param string $key The dot-notated key or array of keys |
|
184 | 184 | * @return mixed |
185 | 185 | * @since 0.1.0 |
186 | 186 | */ |