| 1 | <?php |
||
| 13 | class AttachmentContainer extends AbstractContainer |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var AttachmentInterface[] |
||
| 18 | */ |
||
| 19 | protected $store; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param AttachmentInterface $attachment |
||
| 23 | */ |
||
| 24 | public function addAttachmentInterface(AttachmentInterface $attachment) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return AttachmentInterface[] |
||
| 31 | */ |
||
| 32 | public function asArray(): array |
||
| 36 | |||
| 37 | } |