🤖 Rector and PHPCS fixes
[dokuwiki.git] / inc / Action / Check.php
blob88d3a3e27521011e573ee6c2cb3e7039bb2f0478
1 <?php
3 namespace dokuwiki\Action;
5 use dokuwiki\Action\Exception\ActionAbort;
7 /**
8 * Class Check
10 * Adds some debugging info before aborting to show
12 * @package dokuwiki\Action
14 class Check extends AbstractAction
16 /** @inheritdoc */
17 public function minimumPermission()
19 return AUTH_READ;
22 public function preProcess()
24 check();
25 throw new ActionAbort();