| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function __construct(Cpu $cpu, Memory $memory, Network $network, WebServer $webServer, storage $storage) |
||
| 16 | { |
||
| 17 | parent::__construct(); |
||
| 18 | |||
| 19 | $this->cpu = $cpu; |
||
|
|
|||
| 20 | $this->memory = $memory; |
||
| 21 | $this->network = $network; |
||
| 22 | $this->webServer = $webServer; |
||
| 23 | $this->storage = $storage; |
||
| 24 | } |
||
| 59 |