Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class Block |
||
13 | { |
||
14 | /** @var string */ |
||
15 | private $id; |
||
16 | /** @var bool */ |
||
17 | private $shouldRefresh = false; |
||
18 | |||
19 | public function __construct(string $id) |
||
22 | } |
||
23 | |||
24 | public function getId(): string |
||
27 | } |
||
28 | |||
29 | public function refresh(): void |
||
32 | } |
||
33 | |||
34 | public function shouldRefresh(): bool |
||
39 |