X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fcontext%2FMutableContext.php;h=56ec96015b13921cc88c05c1072e180bde92ac14;hb=74426f3cf796b149f1ae445e41815bbe148640b2;hp=189b346c9863b6ad4a8567ea0802392c82516836;hpb=9a6b2a4fffb82840d0bf780eb4ecb873ad64fa54;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/context/MutableContext.php b/includes/context/MutableContext.php index 189b346c98..56ec96015b 100644 --- a/includes/context/MutableContext.php +++ b/includes/context/MutableContext.php @@ -23,60 +23,45 @@ */ interface MutableContext { + /** - * Set the Config object - * * @param Config $config */ public function setConfig( Config $config ); /** - * Set the WebRequest object - * - * @param WebRequest $r + * @param WebRequest $request */ - public function setRequest( WebRequest $r ); + public function setRequest( WebRequest $request ); /** - * Set the Title object - * - * @param Title $t + * @param Title $title */ - public function setTitle( Title $t ); + public function setTitle( Title $title ); /** - * Set the WikiPage object - * - * @param WikiPage $p + * @param WikiPage $wikiPage */ - public function setWikiPage( WikiPage $p ); + public function setWikiPage( WikiPage $wikiPage ); /** - * Set the OutputPage object - * - * @param OutputPage $o + * @param OutputPage $output */ - public function setOutput( OutputPage $o ); + public function setOutput( OutputPage $output ); /** - * Set the User object - * - * @param User $u + * @param User $user */ - public function setUser( User $u ); + public function setUser( User $user ); /** - * Set the Language object - * - * @param Language|string $l Language instance or language code + * @param Language|string $language Language instance or language code */ - public function setLanguage( $l ); + public function setLanguage( $language ); /** - * Set the Skin object - * - * @param Skin $s + * @param Skin $skin */ - public function setSkin( Skin $s ); + public function setSkin( Skin $skin ); }