1 | <?php |
||
8 | class Options extends \BFW\Options |
||
9 | { |
||
10 | /** |
||
11 | * Constructor |
||
12 | * |
||
13 | * @param array $defaultOption : The default options from BFW Application |
||
14 | * @param array $options : The options declared by user |
||
15 | */ |
||
16 | public function __construct($defaultOption, $options) |
||
44 | |||
45 | /** |
||
46 | * Find the vendor directory from the path of this file |
||
47 | * (In theory we are into) |
||
48 | * |
||
49 | * @return string |
||
50 | */ |
||
51 | protected function searchVendorDir() |
||
64 | |||
65 | /** |
||
66 | * Find the root directory from the vendor directory |
||
67 | * In theory of the vendor directory is on the root directory. |
||
68 | * If not, the user can define path for vendor and root directory. |
||
69 | * |
||
70 | * @return string |
||
71 | */ |
||
72 | protected function searchRootDir() |
||
76 | } |
||
77 |