| Total Complexity | 4 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class Trophy implements InventoryItem |
||
| 11 | { |
||
| 12 | public function __construct( |
||
| 17 | |||
| 18 | public function getName(): string |
||
| 19 | { |
||
| 20 | return $this->name; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getDescription(): string |
||
| 24 | { |
||
| 25 | return $this->description; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getSellValue(): Coin |
||
| 31 | } |
||
| 32 | } |
||
| 33 |