Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function __construct( |
||
17 | Environment $environment, |
||
18 | Version $previousVersion, |
||
19 | Version $currentVersion, |
||
20 | Server $server, |
||
21 | ChangeInspector $changeInspector) |
||
22 | { |
||
23 | $this->environment = $environment; |
||
24 | $this->previousVersion = $previousVersion; |
||
25 | $this->currentVersion = $currentVersion; |
||
26 | $this->server = $server; |
||
27 | $this->changeInspector = $changeInspector; |
||
28 | } |
||
29 | |||
59 |