| 1 | <?php |
||
| 16 | class ReorderEvent extends AbstractMappingEvent |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $destId; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var bool |
||
| 25 | */ |
||
| 26 | private $after; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param object $document |
||
| 30 | * @param string $destId |
||
| 31 | * @param bool $after |
||
| 32 | */ |
||
| 33 | public function __construct($document, $destId, $after) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function getDebugMessage() |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | public function getDestId() |
||
| 60 | |||
| 61 | /** |
||
| 62 | * @return bool |
||
| 63 | */ |
||
| 64 | public function getAfter() |
||
| 68 | |||
| 69 | /** |
||
| 70 | * @param NodeInterface $node |
||
| 71 | */ |
||
| 72 | public function setNode(NodeInterface $node) |
||
| 76 | } |
||
| 77 |