diff options
author | Andreas Gohr <andi@splitbrain.org> | 2023-09-02 14:42:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-02 14:42:51 +0200 |
commit | 5ff5424d8c81c7123d8656a787af2ff85b3dec21 (patch) | |
tree | 322929ee01d892bb3c927e7fe1238369c647f820 /inc/Menu/Item/Revisions.php | |
parent | 0613df3287b82a98b1e97cf86ed9d4c8fbd16f1c (diff) | |
parent | 91560755291852b8302767d454183a7662666f7e (diff) | |
download | dokuwiki-5ff5424d8c81c7123d8656a787af2ff85b3dec21.tar.gz dokuwiki-5ff5424d8c81c7123d8656a787af2ff85b3dec21.zip |
Merge pull request #4045 from dokuwiki/autofix
Use Rector to autofix code smell
Diffstat (limited to 'inc/Menu/Item/Revisions.php')
-rw-r--r-- | inc/Menu/Item/Revisions.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/inc/Menu/Item/Revisions.php b/inc/Menu/Item/Revisions.php index 3009a7924..4b220b801 100644 --- a/inc/Menu/Item/Revisions.php +++ b/inc/Menu/Item/Revisions.php @@ -7,15 +7,15 @@ namespace dokuwiki\Menu\Item; * * Access the old revisions of the current page */ -class Revisions extends AbstractItem { - +class Revisions extends AbstractItem +{ /** @inheritdoc */ - public function __construct() { + public function __construct() + { parent::__construct(); $this->accesskey = 'o'; $this->type = 'revs'; $this->svg = DOKU_INC . 'lib/images/menu/07-revisions_history.svg'; } - } |