Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | |||
21 | \BFW\Helpers\Constants::create('CLI_DIR', SRC_DIR.'cli/'); |
||
22 | \BFW\Helpers\Constants::create('CTRL_DIR', SRC_DIR.'controllers/'); |
||
23 | \BFW\Helpers\Constants::create('MODELES_DIR', SRC_DIR.'modeles/'); |
||
24 | \BFW\Helpers\Constants::create('VIEW_DIR', SRC_DIR.'view/'); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | * @return null |
||
30 | */ |
||
31 | public function __invoke() |
||
32 | { |
||
33 | return null; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Obtain the path of the application root directory |
||
49 |