From: Kunal Mehta Date: Mon, 9 Apr 2018 00:11:36 +0000 (-0700) Subject: PHPVersionCheck: Remove bogus @return tags X-Git-Tag: 1.31.0-rc.0~153^2 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=8a403cdb53abcd874f7b167663099ce087d47055;p=lhc%2Fweb%2Fwiklou.git PHPVersionCheck: Remove bogus @return tags Change-Id: Ic4bcf03bc84c2208186e47015a27fb93a63887d8 --- 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();