From 16c26f8eb8fa6004caed07c9b44317cdf7030958 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thiemo=20M=C3=A4ttig?= Date: Tue, 5 Jul 2016 16:49:17 +0200 Subject: [PATCH] =?utf8?q?Add=20missing=20=E2=80=A6|null=20$context=20docu?= =?utf8?q?mentation=20to=20Action=20class?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: If365123ffafe8c3eb7566432276131f815a68280 --- includes/actions/Action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/actions/Action.php b/includes/actions/Action.php index 84bf16ee8f..f06f828204 100644 --- a/includes/actions/Action.php +++ b/includes/actions/Action.php @@ -88,7 +88,7 @@ abstract class Action { * @since 1.17 * @param string $action * @param Page $page - * @param IContextSource $context + * @param IContextSource|null $context * @return Action|bool|null False if the action is disabled, null * if it is not recognised */ @@ -264,7 +264,7 @@ abstract class Action { * Only public since 1.21 * * @param Page $page - * @param IContextSource $context + * @param IContextSource|null $context */ public function __construct( Page $page, IContextSource $context = null ) { if ( $context === null ) { -- 2.20.1