Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | interface ConfigureInterface |
||
9 | { |
||
10 | /** |
||
11 | * Read configuration from file or array, if a file, first check in |
||
12 | * ANAX_APP_PATH/config and then in ANAX_INSTALL_PATH/config. |
||
13 | * |
||
14 | * @param []|string $what is an array with key/value config options |
||
|
|||
15 | * or a file to be included which returns such |
||
16 | * an array. |
||
17 | * |
||
18 | * @throws Exception when argument if not a filer nor an array. |
||
19 | * |
||
20 | * @return self for chaining. |
||
21 | */ |
||
22 | public function configure($what); |
||
23 | } |
||
24 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.