Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2.0116 |
Changes | 0 |
1 | <?php |
||
50 | 1 | protected function generateCrawler() |
|
51 | { |
||
52 | 1 | if (!Helper::validateCif($this->getCif())) { |
|
53 | throw new InvalidCifException(); |
||
54 | } |
||
55 | 1 | $crawler = $this->getClient()->request( |
|
56 | 1 | 'GET', |
|
57 | 1 | 'http://www.mfinante.gov.ro/infocodfiscal.html?cod=' . $this->getCif() |
|
58 | ); |
||
59 | 1 | return $crawler; |
|
60 | } |
||
62 |