| 1 | <?php |
||
| 8 | class Add extends AbstractCollection |
||
| 9 | { |
||
| 10 | const PREFIX = 'add'; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected static $remoteToPrefixMapping = array( |
||
| 16 | Prop::REMOTE_ONE => Set::PREFIX, |
||
| 17 | Prop::REMOTE_MANY => Add::PREFIX, |
||
| 18 | ); |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getPrefix() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param CallbackBag $callbackBag |
||
| 30 | * @throws \Exception |
||
| 31 | */ |
||
| 32 | protected function updateProperty(CallbackBag $callbackBag) |
||
| 42 | } |
||
| 43 |