1<?php 2/** 3 * Created by IntelliJ IDEA. 4 * User: andi 5 * Date: 2/11/17 6 * Time: 10:26 AM 7 */ 8 9namespace dokuwiki\Action; 10 11use dokuwiki\Action\Exception\ActionAbort; 12 13class Recover extends AbstractAliasAction { 14 15 public function preProcess() { 16 throw new ActionAbort('edit'); 17 } 18 19} 20