Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | function getConfigFile() |
||
25 | { |
||
26 | $longopts = array( |
||
27 | "required:" // Valeur requise |
||
28 | ); |
||
29 | if (array_key_exists('f', $args = getopt("f:", $longopts))) { |
||
30 | return json_decode(file_get_contents($args['f'])); |
||
31 | } |
||
32 | return json_decode(file_get_contents(APPLICATION_PATH.'/conf/config.json')); |
||
33 | } |
||
34 |
This method has been deprecated.