Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | protected function tagAndLog(array $mapData) |
||
25 | { |
||
26 | $this->log->debug('mapData', $mapData); |
||
27 | $this->summary->citationNumber = $this->summary->citationNumber ?? 0; |
||
28 | $this->summary->citationNumber++; |
||
29 | |||
30 | if (!isset($this->summary->memo['sites']) |
||
31 | || !in_array($this->externalPage->getPrettyDomainName(), $this->summary->memo['sites']) |
||
32 | ) { |
||
33 | $this->summary->memo['sites'][] = $this->externalPage->getPrettyDomainName(); // ??? |
||
34 | } |
||
35 | if (isset($mapData['accès url'])) { |
||
36 | $this->log->debug('accès 🔒 ' . $mapData['accès url']); |
||
37 | } |
||
45 | } |