Recover.php 347 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace dokuwiki\Action;
  3. use dokuwiki\Action\Exception\ActionAbort;
  4. /**
  5. * Class Recover
  6. *
  7. * Recover a draft
  8. *
  9. * @package dokuwiki\Action
  10. */
  11. class Recover extends AbstractAliasAction {
  12. /**
  13. * @inheritdoc
  14. * @throws ActionAbort
  15. */
  16. public function preProcess() {
  17. throw new ActionAbort('edit');
  18. }
  19. }