| 1 | <?php  | 
            ||
| 17 | class CreateDatabases implements CommandInterface  | 
            ||
| 18 | { | 
            ||
| 19 | const NAME = 'create-dbs';  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * @var EventDispatcher  | 
            ||
| 23 | */  | 
            ||
| 24 | private $eventDispatcher;  | 
            ||
| 25 | |||
| 26 | 1 | public function __construct(EventDispatcher $eventDispatcher)  | 
            |
| 30 | |||
| 31 | public function getName() : string  | 
            ||
| 35 | |||
| 36 | public function configure(Command $command)  | 
            ||
| 43 | |||
| 44 | 1 | public function execute(InputInterface $input, OutputInterface $output)  | 
            |
| 52 | }  | 
            ||
| 53 |