HeaderLimits.php 170 Bytes
<?php
namespace App\Service\Contract;

interface HeaderLimits{
    function getDayLimit(): int;
    function getCurrentLimit(): int;
    function getSpentLimit(): int;
}