From cbb966d70099100d299c23caafc3a08394998e6e Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Wed, 10 May 2023 11:25:11 +0200 Subject: [PATCH] no more needed --- src/My.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/My.php b/src/My.php index 4ab5c82..2abf279 100644 --- a/src/My.php +++ b/src/My.php @@ -21,9 +21,6 @@ use dcCore; */ class My { - /** @var string This module required php version */ - public const PHP_MIN = '7.4'; - /** * This module id. */ @@ -49,12 +46,4 @@ class My { return dirname(__DIR__); } - - /** - * Check this module PHP version compliant. - */ - public static function phpCompliant(): bool - { - return version_compare(phpversion(), self::PHP_MIN, '>='); - } }