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