diff options
author | Thiemo Mättig <thiemo.maettig@wikimedia.de> | 2017-12-28 16:31:56 +0100 |
---|---|---|
committer | Thiemo Mättig <thiemo.maettig@wikimedia.de> | 2017-12-28 16:31:56 +0100 |
commit | fa15c987874009401f73f39cb06430c24a0ce9d7 (patch) | |
tree | 413f3eb588bd53ef80da7242922de4e1a0d2bb2e /includes/context/MutableContext.php | |
parent | c9c12a28a666f19f7381ba13d6b5c2015b80804b (diff) | |
download | mediawikicore-fa15c987874009401f73f39cb06430c24a0ce9d7.tar.gz mediawikicore-fa15c987874009401f73f39cb06430c24a0ce9d7.zip |
Improve (weak and strict) type hints invarious places
Change-Id: I3a42ec1547fae971d7b495c99dd144739d8521ab
Diffstat (limited to 'includes/context/MutableContext.php')
-rw-r--r-- | includes/context/MutableContext.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/context/MutableContext.php b/includes/context/MutableContext.php index 6358f11ce4b8..189b346c9863 100644 --- a/includes/context/MutableContext.php +++ b/includes/context/MutableContext.php @@ -26,9 +26,9 @@ 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 |