123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Console;
- /**
- * Class CommandList has a list of commands, which can be extended via DI configuration.
- */
- class CommandList implements CommandListInterface
- {
- /**
- * @var string[]
- */
- protected $commands;
- /**
- * Constructor
- *
- * @param array $commands
- */
- public function __construct(array $commands = [])
- {
- $this->commands = $commands;
- }
- /**
- * {@inheritdoc}
- */
- public function getCommands()
- {
- return $this->commands;
- }
- }
|