| Total Complexity | 7 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Crawler |
||
| 9 | { |
||
| 10 | public $data=null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Initial |
||
| 14 | * |
||
| 15 | * @return Response |
||
|
|
|||
| 16 | */ |
||
| 17 | public function __construct($conf, $commandLineObject=null) |
||
| 18 | { |
||
| 19 | $crawler=self::create($conf, $commandLineObject); |
||
| 20 | if (!is_null($crawler) && isset($crawler)) $crawler->start($conf); |
||
| 21 | } |
||
| 22 | |||
| 23 | public static function create($conf, $commandLineObject=null) { |
||
| 39 | } |
||
| 40 | } |
||
| 42 |