1 | <?php |
||
8 | class Remove extends AbstractCollection |
||
9 | { |
||
10 | const PREFIX = 'remove'; |
||
11 | |||
12 | /** |
||
13 | * @var array |
||
14 | */ |
||
15 | protected static $remoteToPrefixMapping = array( |
||
16 | Prop::REMOTE_ONE => Set::PREFIX, |
||
17 | Prop::REMOTE_MANY => Remove::PREFIX, |
||
18 | ); |
||
19 | |||
20 | /** |
||
21 | * @return string |
||
22 | */ |
||
23 | public function getPrefix() |
||
27 | |||
28 | protected function updateProperty(CallbackBag $callbackBag) |
||
39 | } |
||
40 |