first commit
This commit is contained in:
32
vendor/php-flasher/flasher-laravel/Support/Laravel.php
vendored
Normal file
32
vendor/php-flasher/flasher-laravel/Support/Laravel.php
vendored
Normal file
@ -0,0 +1,32 @@
|
||||
<?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, '<');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user