芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/rentandbuyrealty.com/pay/vendor/doctrine/common/lib/Doctrine/Common/Version.php
* @author Guilherme Blanco
* @author Jonathan Wage
* @author Roman Borschel
* * @deprecated The Version class is deprecated, please refrain from checking the version of doctrine/common. */ class Version { /** * Current Doctrine Version. */ const VERSION = '2.11.0'; /** * Compares a Doctrine version with the current one. * * @param string $version Doctrine version to compare. * * @return int -1 if older, 0 if it is the same, 1 if version passed as argument is newer. */ public static function compare($version) { $currentVersion = str_replace(' ', '', strtolower(self::VERSION)); $version = str_replace(' ', '', $version); return version_compare($version, $currentVersion); } }