1 | <?php |
||
11 | class Application extends BaseApplication { |
||
12 | |||
13 | const VERSION = '0.0.1-alpha.1'; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $baseProjectDirectory; |
||
19 | |||
20 | |||
21 | /** |
||
22 | * @param string $baseProjectDirectory |
||
23 | */ |
||
24 | public function __construct($baseProjectDirectory) { |
||
30 | |||
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getLongVersion() { |
||
43 | |||
44 | |||
45 | /** |
||
46 | * @return string |
||
47 | */ |
||
48 | public function getBaseProjectDirectory() { |
||
51 | |||
52 | } |