Your IP : 216.73.216.95


Current Path : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/
Upload File :
Current File : /var/www/html/wp-content/plugins/mailpoet/vendor-prefixed/doctrine/orm/lib/Doctrine/ORM/Version.php

<?php
declare (strict_types=1);
namespace MailPoetVendor\Doctrine\ORM;
if (!defined('ABSPATH')) exit;
use function str_replace;
use function strtolower;
use function version_compare;
class Version
{
 public const VERSION = '2.7.1-DEV';
 public static function compare($version)
 {
 $currentVersion = str_replace(' ', '', strtolower(self::VERSION));
 $version = str_replace(' ', '', $version);
 return version_compare($version, $currentVersion);
 }
}