Issues (61)

src/Expiry.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\QueryRepository;
6
7
final readonly class Expiry
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 7 at column 6
Loading history...
8
{
9
    /** @var array<string, int> */
10
    private array $time;
11
12
    public function __construct(int $short = 60, int $medium = 3600, int $long = 86400, int $never = 31_536_000)
13
    {
14
        $this->time = [
15
            'short' => $short,
16
            'medium' => $medium,
17
            'long' => $long,
18
            'never' => $never,
19
        ];
20
    }
21
22
    public function getTime(string $type): int
23
    {
24
        return $this->time[$type];
25
    }
26
}
27