1 | <?php |
||
10 | class Remove extends Operation implements Atomic |
||
11 | { |
||
12 | private $previousValue; |
||
13 | |||
14 | public function __construct(string $path) |
||
18 | |||
19 | public function apply(Pointer $target) |
||
27 | |||
28 | public function revert(Pointer $target) |
||
32 | |||
33 | public static function fromDecodedJSON($operationContent): self |
||
39 | |||
40 | private static function assertValidOperationContent($operationContent) |
||
46 | |||
47 | public function __toString(): string |
||
54 | } |
||
55 |