| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function request( |
||
| 26 | string $method, |
||
| 27 | string $uri, |
||
| 28 | array $parameters = [], |
||
| 29 | array $files = [], |
||
| 30 | array $server = [], |
||
| 31 | string $content = null, |
||
| 32 | bool $changeHistory = true |
||
| 33 | ): Crawler { |
||
| 34 | $crawler = parent::request($method, $uri, $parameters, $files, $server, $content, $changeHistory); |
||
| 35 | $this->checkQueryCount(); |
||
|
|
|||
| 36 | |||
| 37 | return $crawler; |
||
| 38 | } |
||
| 40 |