| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function hasProductTaxon(string $taxonName): bool |
||
| 27 | { |
||
| 28 | $taxons = $this->getElement('product_taxon'); |
||
| 29 | |||
| 30 | /** @var NodeElement $taxon */ |
||
| 31 | foreach ($taxons->findAll('css', 'li') as $taxon) { |
||
| 32 | if ($taxon->getText() === $taxonName) { |
||
| 33 | return true; |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | return false; |
||
| 38 | } |
||
| 39 | |||
| 48 |