| 1 | <?php |
||
| 9 | class PerformanceEvent implements PerformanceEventInterface |
||
| 10 | { |
||
| 11 | /** @var PerformanceEventRepository */ |
||
| 12 | private $performanceEventRepository; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * Domain PerformanceEvent constructor. |
||
| 16 | * |
||
| 17 | * @param PerformanceEventRepository $performanceEventRepository |
||
| 18 | */ |
||
| 19 | public function __construct( |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdoc |
||
| 27 | */ |
||
| 28 | public function getById(int $id): PerformanceEventEntity |
||
| 38 | } |
||
| 39 |