| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class SuperimmoNeufParser extends AbstractParser |
||
| 9 | { |
||
| 10 | protected const PROVIDER = Provider::SUPERIMMO_NEUF; |
||
| 11 | |||
| 12 | protected const SELECTOR_AD_WRAPPER = 'td[style="width: 540px;"]'; |
||
| 13 | protected const SELECTOR_LOCATION = 'table:nth-child(2) tr:nth-child(2) span'; |
||
| 14 | protected const SELECTOR_TITLE = 'table:nth-child(2) tr:nth-child(1) span'; |
||
| 15 | protected const SELECTOR_DESCRIPTION = 'table:nth-child(2) tr:nth-child(5) span'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritDoc} |
||
| 19 | */ |
||
| 20 | 1 | protected function parsePhoto(Crawler $crawler): ?string |
|
| 28 |