xref: /dokuwiki/inc/Action/Recover.php (revision 8c7c53b0321a3cd3116b8d3b2ad27863a38dece7)
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        throw new ActionAbort('edit');
23    }
24}
25