diff --git a/src/My.php b/src/My.php index f1a9068..39d871e 100644 --- a/src/My.php +++ b/src/My.php @@ -24,9 +24,6 @@ class My /** @var string Mailer name */ public const X_MAILER = 'Dotclear'; - /** @var string This module required php version */ - public const PHP_MIN = '7.4'; - /** * This module id. */ @@ -52,12 +49,4 @@ class My { return dirname(__DIR__); } - - /** - * Check this module PHP version compliant. - */ - public static function phpCompliant(): bool - { - return version_compare(phpversion(), self::PHP_MIN, '>='); - } }