| 1 | <?php |
||
| 5 | class CardAttachmentEvent extends CardEvent |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var array |
||
| 9 | */ |
||
| 10 | protected $attachment; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Set attachment |
||
| 14 | * |
||
| 15 | * @param array $attachment |
||
| 16 | */ |
||
| 17 | public function setAttachment($attachment) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get attachment |
||
| 24 | * |
||
| 25 | * @return array |
||
| 26 | */ |
||
| 27 | public function getAttachment() |
||
| 31 | } |
||
| 32 |