| 1 | <?php |
||
| 7 | class FromCommand extends AbstractCommand |
||
| 8 | { |
||
| 9 | /**#@+ |
||
| 10 | * Command texts to output |
||
| 11 | * |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | const COMMAND_NAME = 'dev:module:dependencies:from'; |
||
| 15 | const COMMAND_DESCRIPTION = 'Show list of modules which depend on %s module'; |
||
| 16 | const COMMAND_SECTION_TITLE_TEXT = "List of modules which depend on %s module"; |
||
| 17 | const COMMAND_NO_RESULTS_TEXT = "No modules depend on %s module"; |
||
| 18 | /**#@-*/ |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @inheritdoc |
||
| 22 | */ |
||
| 23 | protected function findModuleDependencies($moduleName, $recursive = false) |
||
| 56 | } |
||
| 57 |