From e42a2f970809d9aa301cc6c9a1754ac1ccfaa065 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Wed, 10 May 2023 11:39:48 +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 aaba1a5..43d7ac6 100644 --- a/src/My.php +++ b/src/My.php @@ -24,9 +24,6 @@ class My /** @var string Plugin table name */ public const ALIAS_TABLE_NAME = 'alias'; - /** @var string 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, '>='); - } }