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 |
||
23 | public function request( |
||
24 | $method, |
||
25 | $uri, |
||
26 | array $parameters = [], |
||
27 | array $files = [], |
||
28 | array $server = [], |
||
29 | $content = null, |
||
30 | $changeHistory = true |
||
31 | ) { |
||
32 | $crawler = parent::request($method, $uri, $parameters, $files, $server, $content, $changeHistory); |
||
33 | $this->checkQueryCount(); |
||
|
|||
34 | |||
35 | return $crawler; |
||
36 | } |
||
38 |