| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 1 | protected function createCrawler(string $html): Crawler |
|
| 22 | { |
||
| 23 | // Inject "border-collapse: collapse" on <table> to make <tr> selectable |
||
| 24 | 1 | $crawler = new Crawler($html); |
|
| 25 | 1 | $crawler->filter('table')->getNode(0)->setAttribute('style', 'border-collapse: collapse'); |
|
| 26 | |||
| 27 | 1 | return $crawler; |
|
| 28 | } |
||
| 50 |