laudis-technologies/fiscal

View on GitHub
src/ScaleRule.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

/*
 * This file is part of the Laudis Fiscal package.
 *
 * (c) Laudis technologies <https://laudis.tech>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Laudis\Fiscal;

/**
 * @psalm-immutable
 */
final class ScaleRule
{
    private ?IndexedValue $limit;
    private ?IndexedValue $factor;

    public function __construct(?IndexedValue $limit, ?IndexedValue $factor)
    {
        $this->limit = $limit;
        $this->factor = $factor;
    }

    public static function LIMIT(self $rule): float
    {
        $limit = $rule->getLimit();
        if ($limit === null) {
            return PHP_FLOAT_MAX;
        }

        return $limit->getValue();
    }

    public static function FACTOR(self $rule): float
    {
        $factor = $rule->getFactor();
        if ($factor === null) {
            return 0;
        }

        return $factor->getValue();
    }

    public static function make(?IndexedValue $limit = null, ?IndexedValue $factor = null): ScaleRule
    {
        return new self($limit, $factor);
    }

    public function getLimit(): ?IndexedValue
    {
        return $this->limit;
    }

    public function getFactor(): ?IndexedValue
    {
        return $this->factor;
    }
}