Total Complexity | 5 |
Total Lines | 22 |
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) |
||
18 | { |
||
19 | $crawler=self::create($conf); |
||
20 | if (!is_null($crawler) && isset($crawler)) $this->data=$crawler->data; |
||
21 | } |
||
22 | |||
23 | public static function create($conf) { |
||
30 | } |
||
31 | } |
||
33 |