From 9d3c1767434e7ad4d9a20e744d47de798ce0336e Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 20 Nov 2013 11:22:39 +0100 Subject: [PATCH] Suppress false positive CodeSniffer warning Change-Id: Ia76cec9062a944c80f6fa1fbcea517ccf64793e4 --- includes/db/ORMTable.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/db/ORMTable.php b/includes/db/ORMTable.php index cdc905bb13..e47bc672de 100644 --- a/includes/db/ORMTable.php +++ b/includes/db/ORMTable.php @@ -652,9 +652,11 @@ class ORMTable extends DBAccessBase implements IORMTable { * * @since 1.20 */ + // @codingStandardsIgnoreStart Suppress "useless method overriding" sniffer warning public function releaseConnection( DatabaseBase $db ) { parent::releaseConnection( $db ); // just make it public } + // @codingStandardsIgnoreEnd /** * Update the records matching the provided conditions by -- 2.20.1