File "Version.php"

Full Path: /home/warrior1/public_html/languages/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/Version.php
File size: 364 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\DBAL;
if (!defined('ABSPATH')) exit;
use function str_replace;
use function strtoupper;
use function version_compare;
class Version
{
 public const VERSION = '2.13.8';
 public static function compare($version)
 {
 $version = str_replace(' ', '', strtoupper($version));
 return version_compare($version, self::VERSION);
 }
}