| Total Complexity | 5 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | class HtmlResponse extends Response |
||
| 14 | { |
||
| 15 | public function crawler(): Crawler |
||
| 16 | { |
||
| 17 | $crawler = new Crawler(); |
||
| 18 | $crawler->addHtmlContent($this->body()); |
||
| 19 | |||
| 20 | return $crawler; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @internal |
||
| 25 | */ |
||
| 26 | final public function dump(?string $selector = null): void |
||
| 43 | } |
||
| 44 | } |
||
| 46 |