Add missing …|null $context documentation to Action class
authorThiemo Mättig <thiemo.maettig@wikimedia.de>
Tue, 5 Jul 2016 14:49:17 +0000 (16:49 +0200)
committerThiemo Mättig <thiemo.maettig@wikimedia.de>
Tue, 5 Jul 2016 14:49:17 +0000 (16:49 +0200)
Change-Id: If365123ffafe8c3eb7566432276131f815a68280

includes/actions/Action.php

index 84bf16e..f06f828 100644 (file)
@@ -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 ) {