From 8a403cdb53abcd874f7b167663099ce087d47055 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Sun, 8 Apr 2018 17:11:36 -0700 Subject: [PATCH] PHPVersionCheck: Remove bogus @return tags Change-Id: Ic4bcf03bc84c2208186e47015a27fb93a63887d8 --- includes/PHPVersionCheck.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/includes/PHPVersionCheck.php b/includes/PHPVersionCheck.php index 77c725ff99..46452d9c82 100644 --- a/includes/PHPVersionCheck.php +++ b/includes/PHPVersionCheck.php @@ -54,7 +54,6 @@ class PHPVersionCheck { * - api.php * - mw-config/index.php * - cli - * @return $this */ function setEntryPoint( $entryPoint ) { $this->entryPoint = $entryPoint; @@ -102,8 +101,6 @@ class PHPVersionCheck { /** * Displays an error, if the installed php version does not meet the minimum requirement. - * - * @return $this */ function checkRequiredPHPVersion() { $phpInfo = $this->getPHPInfo(); @@ -151,8 +148,6 @@ HTML; /** * Displays an error, if the vendor/autoload.php file could not be found. - * - * @return $this */ function checkVendorExistence() { if ( !file_exists( dirname( __FILE__ ) . '/../vendor/autoload.php' ) ) { @@ -179,8 +174,6 @@ HTML; /** * Displays an error, if a PHP extension does not exist. - * - * @return $this */ function checkExtensionExistence() { $missingExtensions = array(); -- 2.20.1