StocksNew/vendor/php-flasher/flasher-laravel/Support/Laravel.php

33 lines
724 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?php
/*
* This file is part of the PHPFlasher package.
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
*/
namespace Flasher\Laravel\Support;
use Illuminate\Foundation\Application;
final class Laravel
{
/**
* @param string $version
* @param string|null $operator
*
* @return bool
*/
public static function isVersion($version, $operator = null)
{
if (null !== $operator) {
return version_compare(Application::VERSION, $version, $operator);
}
$parts = explode('.', $version);
++$parts[\count($parts) - 1];
$next = implode('.', $parts);
return self::isVersion($version, '>=') && self::isVersion($next, '<');
}
}