| 1 | <?php |
||
| 25 | class TrashItem extends Document implements TrashInterface |
||
| 26 | { |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Element name |
||
| 30 | * @Label('Name') |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $name = ''; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Type of trashed item |
||
| 37 | * @Label('Type') |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $type = ''; |
||
| 41 | |||
| 42 | public function getCollectionName() |
||
| 46 | |||
| 47 | } |
||
| 48 |