xref: /dokuwiki/inc/Action/Recover.php (revision 90fb952c4c30c09c8446076ba05991c89a3f0b01)
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