| 1 | <?php |
||
| 21 | abstract class AbstractSearch |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * Holds a instance of config. |
||
| 25 | * |
||
| 26 | * @var Config |
||
| 27 | */ |
||
| 28 | protected $config; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Holds a instance of input. |
||
| 32 | * |
||
| 33 | * @var InputInterface |
||
| 34 | */ |
||
| 35 | protected $input; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * Holds a instance of analyser. |
||
| 39 | * |
||
| 40 | * @var Dom |
||
| 41 | */ |
||
| 42 | protected $dom; |
||
| 43 | |||
| 44 | public function __construct(Config $config, InputInterface $input, Dom $dom = null) |
||
| 50 | } |
||
| 51 |