Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | protected function isVersionSupported(): bool |
||
22 | { |
||
23 | $version = glsr(Sanitizer::class)->sanitizeVersion($this->version()); |
||
24 | $supportedVersion = glsr(Sanitizer::class)->sanitizeVersion($this->supportedVersion()); |
||
25 | if (empty($supportedVersion)) { |
||
26 | return true; |
||
27 | } |
||
28 | return version_compare($version, $supportedVersion, '>='); |
||
1 ignored issue
–
show
|
|||
29 | } |
||
48 |