mediawiki/extensions/GoogleLogin: main (log #528030)

sourcepatches

This run took 21 seconds.

From 1f14fa66c744a285dc8ae5e8322be91c6c061011 Mon Sep 17 00:00:00 2001
From: libraryupgrader <tools.libraryupgrader@tools.wmflabs.org>
Date: Sun, 7 Nov 2021 02:51:56 +0000
Subject: [PATCH] build: Updating mediawiki/mediawiki-codesniffer to 38.0.0

Change-Id: I69d19872db90332036b6ae681243608e317b3fcf
---
 composer.json                                          | 2 +-
 includes/AllowedDomains/AllowedDomainsStore.php        | 2 +-
 includes/AllowedDomains/MutableAllowedDomainsStore.php | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/composer.json b/composer.json
index f65d147..928b485 100644
--- a/composer.json
+++ b/composer.json
@@ -7,7 +7,7 @@
 		"monolog/monolog": "~2.2.0"
 	},
 	"require-dev": {
-		"mediawiki/mediawiki-codesniffer": "37.0.0",
+		"mediawiki/mediawiki-codesniffer": "38.0.0",
 		"mediawiki/minus-x": "1.1.1",
 		"php-parallel-lint/php-console-highlighter": "0.5.0",
 		"php-parallel-lint/php-parallel-lint": "1.3.1"
diff --git a/includes/AllowedDomains/AllowedDomainsStore.php b/includes/AllowedDomains/AllowedDomainsStore.php
index e385943..2922595 100644
--- a/includes/AllowedDomains/AllowedDomainsStore.php
+++ b/includes/AllowedDomains/AllowedDomainsStore.php
@@ -17,7 +17,7 @@ interface AllowedDomainsStore {
 	 *
 	 * @param EmailDomain $domain The e-mail-address as an EmailDomain object to check if it is
 	 * contained in the store.
-	 * @return boolean
+	 * @return bool
 	 */
 	function contains( EmailDomain $domain );
 
diff --git a/includes/AllowedDomains/MutableAllowedDomainsStore.php b/includes/AllowedDomains/MutableAllowedDomainsStore.php
index 4d097f6..9a63f7b 100644
--- a/includes/AllowedDomains/MutableAllowedDomainsStore.php
+++ b/includes/AllowedDomains/MutableAllowedDomainsStore.php
@@ -15,7 +15,7 @@ interface MutableAllowedDomainsStore extends AllowedDomainsStore {
 	 *
 	 * @param EmailDomain $domain The e-mail-address as an EmailDomain object to add as allowed
 	 * to the store
-	 * @return integer The ID of the newly added entry (0 if IDs are not used, -1 on failure)
+	 * @return int The ID of the newly added entry (0 if IDs are not used, -1 on failure)
 	 */
 	function add( EmailDomain $domain );
 
@@ -26,7 +26,7 @@ interface MutableAllowedDomainsStore extends AllowedDomainsStore {
 	 *
 	 * @param EmailDomain $domain The e-mail-address as an EmailDomain object to remove from the
 	 * store.
-	 * @return boolean
+	 * @return bool
 	 */
 	function remove( EmailDomain $domain );
 
-- 
2.20.1

**purged**
Source code is licensed under the AGPL.