| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | protected function configure() |
||
| 15 | { |
||
| 16 | $this->setName('magento:extract-navigation-xpath'); |
||
| 17 | $this->setDescription('Will run a series of tests on the provided URL to attempt to extract the navigation Xpath for the theme configuration'); |
||
| 18 | $this->addArgument( |
||
| 19 | 'url', |
||
| 20 | InputArgument::REQUIRED, |
||
| 21 | 'The URL to test against' |
||
| 22 | ); |
||
| 23 | $this->addArgument( |
||
| 24 | 'category', |
||
| 25 | InputArgument::REQUIRED, |
||
| 26 | 'The category path to use as a base (e.g. Accessories/Jewelry)' |
||
| 27 | ); |
||
| 28 | } |
||
| 29 | |||
| 43 | } |