diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-01 15:12:12 -0400 |
commit | c9aa36da061816dee256a979c2ff8d2ee41824d9 (patch) | |
tree | 29f7002b80ee984b488bd047dbbd80b36bf892e9 /includes/context/IContextSource.php | |
parent | b4274e0e33eafb5e9ead9d949ebf031a9fb8363b (diff) | |
parent | d1ba966140d7a60cd5ae4e8667ceb27c1a138592 (diff) |
Merge branch 'archwiki'
# Conflicts:
# skins/ArchLinux.php
# skins/ArchLinux/archlogo.gif
Diffstat (limited to 'includes/context/IContextSource.php')
-rw-r--r-- | includes/context/IContextSource.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/includes/context/IContextSource.php b/includes/context/IContextSource.php index 35d5aed6..f718103d 100644 --- a/includes/context/IContextSource.php +++ b/includes/context/IContextSource.php @@ -37,7 +37,7 @@ interface IContextSource { /** * Get the Title object * - * @return Title + * @return Title|null */ public function getTitle(); @@ -79,14 +79,6 @@ interface IContextSource { /** * Get the Language object * - * @deprecated since 1.19 Use getLanguage instead - * @return Language - */ - public function getLang(); - - /** - * Get the Language object - * * @return Language * @since 1.19 */ @@ -100,6 +92,14 @@ interface IContextSource { public function getSkin(); /** + * Get the site configuration + * + * @since 1.23 + * @return Config + */ + public function getConfig(); + + /** * Get a Message object with context set * * @return Message @@ -110,7 +110,7 @@ interface IContextSource { * Export the resolved user IP, HTTP headers, user ID, and session ID. * The result will be reasonably sized to allow for serialization. * - * @return Array + * @return array * @since 1.21 */ public function exportSession(); |