Total Complexity | 8 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class HeaderCollector extends BasicCollector implements InventoryAwareCollector, ClientAwareCollector |
||
14 | { |
||
15 | protected string $identifier = "WebsiteHeader"; |
||
16 | |||
17 | private array $inventory; |
||
18 | private Client $client; |
||
19 | |||
20 | public function setClient(Client $client): void |
||
21 | { |
||
22 | $this->client = $client; |
||
23 | } |
||
24 | |||
25 | public function setInventory(array $inventory): void |
||
28 | } |
||
29 | |||
30 | public function collect(): array |
||
55 |