Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 1 | public function __construct(Ticket $ticket, Parameters $applicationParams, FileManagerService $fileManager) |
|
27 | { |
||
28 | 1 | $this->ticket = $ticket; |
|
29 | 1 | $this->projectHomeDir = $applicationParams->projectsHomeDir(); |
|
30 | 1 | $this->publicHostDir = $applicationParams->symlinkTarget($ticket->key()); |
|
31 | 1 | $this->fileManager = $fileManager; |
|
32 | 1 | } |
|
33 | |||
47 |