From aa4d6e1f2ef1b6e2325da000d62a322898e7cfee Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 6 Jan 2014 19:41:54 +0100 Subject: [PATCH] Update formatting Change-Id: I27e43c19906edc732b4976b8426ed34bad63622b --- includes/db/Database.php | 4 ++-- includes/db/DatabaseMysqlBase.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 57575ec881..2042530549 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -2688,8 +2688,8 @@ abstract class DatabaseBase implements IDatabase, DatabaseType { * @throws Exception * @return bool */ - public function upsert( - $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__ + public function upsert( $table, array $rows, array $uniqueIndexes, array $set, + $fname = __METHOD__ ) { if ( !count( $rows ) ) { return true; // nothing to do diff --git a/includes/db/DatabaseMysqlBase.php b/includes/db/DatabaseMysqlBase.php index 091896cd66..0c2e472fbe 100644 --- a/includes/db/DatabaseMysqlBase.php +++ b/includes/db/DatabaseMysqlBase.php @@ -940,8 +940,8 @@ abstract class DatabaseMysqlBase extends DatabaseBase { * @param string $fname * @return bool */ - public function upsert( - $table, array $rows, array $uniqueIndexes, array $set, $fname = __METHOD__ + public function upsert( $table, array $rows, array $uniqueIndexes, + array $set, $fname = __METHOD__ ) { if ( !count( $rows ) ) { return true; // nothing to do -- 2.20.1