X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fcontext%2FMutableContext.php;h=56ec96015b13921cc88c05c1072e180bde92ac14;hb=28b8d632ad487182c1f65c32dad9e921f80ccd02;hp=6358f11ce4b896888230c8e79b0cb4c35dc072fd;hpb=55bc0a7a421f5f9ea99061189b6d851987cd54b2;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/context/MutableContext.php b/includes/context/MutableContext.php index 6358f11ce4..56ec96015b 100644 --- a/includes/context/MutableContext.php +++ b/includes/context/MutableContext.php @@ -23,60 +23,45 @@ */ interface MutableContext { + /** - * Set the Config object - * - * @param Config $c + * @param Config $config */ - public function setConfig( Config $c ); + 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 ); }