From: Siebrand Mazeland Date: Thu, 14 Nov 2013 12:24:23 +0000 (+0100) Subject: Exclude override to make method public from checks X-Git-Tag: 1.31.0-rc.0~18125^2 X-Git-Url: https://git.cyclocoop.org/%20%27.%28%24debut%20%20%20%24par_page%29.%27?a=commitdiff_plain;h=29e000978528395107187427435980f0ad469302;p=lhc%2Fweb%2Fwiklou.git Exclude override to make method public from checks Change-Id: I66df2efa5900c5a192ae88217e736b7fc7335dcd --- diff --git a/includes/actions/HistoryAction.php b/includes/actions/HistoryAction.php index 4f579c62cb..e492bd4ce7 100644 --- a/includes/actions/HistoryAction.php +++ b/includes/actions/HistoryAction.php @@ -883,9 +883,11 @@ class HistoryPager extends ReverseChronologicalPager { * Backwards-compatibility alias */ class HistoryPage extends HistoryAction { - public function __construct( Page $article ) { # Just to make it public + // @codingStandardsIgnoreStart Needed "useless" override to make it public. + public function __construct( Page $article ) { parent::__construct( $article ); } + // @codingStandardsIgnoreEnd public function history() { $this->onView();