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