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