| 1 | <?php |
||
| 12 | class CrawlUrlCommand extends ContainerAwareCommand |
||
| 13 | { |
||
| 14 | const ARGUMENT_URL = 'url'; |
||
| 15 | const OPTION_LIMIT = 'limit'; |
||
| 16 | |||
| 17 | 1 | protected function configure() |
|
| 35 | |||
| 36 | /** |
||
| 37 | * @param InputInterface $input |
||
| 38 | * @param OutputInterface $output |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @param Page $page |
||
| 52 | */ |
||
| 53 | protected function handlePage(Page $page) |
||
| 57 | } |
||
| 58 |