From 80ad25907d39eb5e6403fe78c8b982e26002454a Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Wed, 10 May 2023 11:06:14 +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 e911f03..d362274 100644 --- a/src/My.php +++ b/src/My.php @@ -24,9 +24,6 @@ class My /** @var string This module settings ID */ public const NS_SETTING_ID = 'handlers'; - /** @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, '>='); - } }