| 1 | <?php |
||
| 8 | class OperationListItem |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var OperationInterface |
||
| 12 | */ |
||
| 13 | protected $operation; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var IndexObject |
||
| 17 | */ |
||
| 18 | protected $indexObject; |
||
| 19 | |||
| 20 | public function __construct(OperationInterface $operation, ?IndexObject $indexObject = null) |
||
| 25 | |||
| 26 | public function getOperation(): OperationInterface |
||
| 30 | |||
| 31 | public function getIndexObject(): ?IndexObject |
||
| 35 | } |
||
| 36 |