Limits.php
1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace App\Service;
use App\Models\Tokens;
use App\Service\Contract\HeaderLimits;
class Limits implements \App\Service\Contract\Limits {
private $_instance;
private $token;
private function __constructor(Tokens $token){
$this->token = $token;
}
public function getInstance($token){
$this->_instance = new self($token);
}
function current(): int
{
return $this->token->limit;
}
function DayLimit(): int
{
$this->token->limits->first()->day;
}
function countObjectsLimit(string $service, string $method): int
{
$cost = $this->getCost($service, $method);
return floor($this->current() / $cost);
}
function doRezerv(string $service, string $method, int $limit): int
{
// TODO: Implement doRezerv() method.
}
function removeRezerv(int $id): int
{
// TODO: Implement removeRezerv() method.
}
function updateLimits(HeaderLimits $limits)
{
// TODO: Implement updateLimits() method.
}
private function getCost(){
}
}