Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
48 | protected function init(string $recipe) |
||
49 | { |
||
50 | $console = new Application(); |
||
51 | $console->setAutoExit(false); |
||
52 | $this->tester = new ApplicationTester($console); |
||
53 | |||
54 | $this->deployer = new Deployer($console); |
||
55 | $this->deployer->importer->import($recipe); |
||
56 | $this->deployer->init(); |
||
57 | $this->deployer->config->set('deploy_path', __TEMP_DIR__ . '/{{hostname}}'); |
||
58 | } |
||
74 |