@@ -311,7 +311,6 @@ |
||
| 311 | 311 | * Sets a handler for an extension |
| 312 | 312 | * |
| 313 | 313 | * @param string $extension |
| 314 | - * @param Handler $handler |
|
| 315 | 314 | */ |
| 316 | 315 | public function setHandler($extension, Handler $loader) |
| 317 | 316 | { |
@@ -23,7 +23,8 @@ discard block |
||
| 23 | 23 | /** |
| 24 | 24 | * Sets the environment |
| 25 | 25 | * |
| 26 | - * @param string $enviroment |
|
| 26 | + * @param string $environment |
|
| 27 | + * @return void |
|
| 27 | 28 | */ |
| 28 | 29 | public function setEnvironment($environment); |
| 29 | 30 | |
@@ -31,6 +32,7 @@ discard block |
||
| 31 | 32 | * Unloads a config group |
| 32 | 33 | * |
| 33 | 34 | * @param string $group |
| 35 | + * @return void |
|
| 34 | 36 | */ |
| 35 | 37 | public function unload($group); |
| 36 | 38 | |
@@ -61,6 +63,7 @@ discard block |
||
| 61 | 63 | * @param string|null $destination |
| 62 | 64 | * |
| 63 | 65 | * @throws \RuntimeException |
| 66 | + * @return integer |
|
| 64 | 67 | */ |
| 65 | 68 | public function save($group, $destination = null); |
| 66 | 69 | |
@@ -77,6 +80,7 @@ discard block |
||
| 77 | 80 | * Adds paths to look in |
| 78 | 81 | * |
| 79 | 82 | * @param array $paths |
| 83 | + * @return void |
|
| 80 | 84 | */ |
| 81 | 85 | public function addPaths(array $paths); |
| 82 | 86 | |
@@ -84,6 +88,7 @@ discard block |
||
| 84 | 88 | * Removes a path |
| 85 | 89 | * |
| 86 | 90 | * @param string $path |
| 91 | + * @return void |
|
| 87 | 92 | */ |
| 88 | 93 | public function removePath($path); |
| 89 | 94 | |
@@ -91,6 +96,7 @@ discard block |
||
| 91 | 96 | * Removes paths |
| 92 | 97 | * |
| 93 | 98 | * @param array $paths |
| 99 | + * @return void |
|
| 94 | 100 | */ |
| 95 | 101 | public function removePaths(array $paths); |
| 96 | 102 | |