diff options
author | Kevin Israel <pleasestand@live.com> | 2015-09-26 06:31:05 -0400 |
---|---|---|
committer | Aaron Schulz <aschulz@wikimedia.org> | 2015-09-26 11:13:23 -0700 |
commit | 617d59fcb326bd81e244f52c54bf4a83b8dbe0b2 (patch) | |
tree | a1189f3ef5e11e7fa56fbc667962baf0edf34bac /includes/db/DBConnRef.php | |
parent | 0dbc4fc2e0c9c205367afa4943ff4cf58dbc7843 (diff) | |
download | mediawikicore-617d59fcb326bd81e244f52c54bf4a83b8dbe0b2.tar.gz mediawikicore-617d59fcb326bd81e244f52c54bf4a83b8dbe0b2.zip |
Database: Remove resultObject() from the public interface
It has not been necessary to call this method outside the Database classes
since 1.11 (r23756 / 9382bc7a858c).
This is a breaking change and should not be merged before the following
changes to extensions:
* Disambiguator: Ibef942fd
* Maps: Ic90bd0ad
* OAI: Idbbe08d6
* Oversight: I63071e65
* Video: Id71914cd
Change-Id: Idfe7cd6f516f0aca850878282c47e7914accc6d8
Diffstat (limited to 'includes/db/DBConnRef.php')
-rw-r--r-- | includes/db/DBConnRef.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/includes/db/DBConnRef.php b/includes/db/DBConnRef.php index b4f3f7922998..ffada49e01a7 100644 --- a/includes/db/DBConnRef.php +++ b/includes/db/DBConnRef.php @@ -449,10 +449,6 @@ class DBConnRef implements IDatabase { return $this->__call( __FUNCTION__, func_get_args() ); } - public function resultObject( $result ) { - return $this->__call( __FUNCTION__, func_get_args() ); - } - public function ping() { return $this->__call( __FUNCTION__, func_get_args() ); } |