| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | final class Item extends PresentationModel implements HasPresenterInterface |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $description = ''; |
||
| 13 | |||
| 14 | /** @var string */ |
||
| 15 | protected $name = ''; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @return string The name by which to resolve the presenter through the DI container. |
||
| 19 | */ |
||
| 20 | public function getPresenterName(): string |
||
| 25 |