| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function createComputer(): ComputerInterface |
||
| 26 | { |
||
| 27 | $this |
||
| 28 | ->setPart(new Hardware\Motherboard(Order::MB)) |
||
| 29 | ->setPart(new Hardware\Cpu(Order::CPU)) |
||
| 30 | ->setPart(new Hardware\Ram(Order::RAM)) |
||
| 31 | ->setPart(new Hardware\Gpu(Order::GPU)) |
||
| 32 | ->setPart(new Hardware\Ssd(Order::SSD)) |
||
| 33 | ->setPart(new Hardware\Hdd(Order::HDD)); |
||
| 34 | |||
| 35 | return new Desktop($this->components); |
||
| 36 | } |
||
| 52 |