| 1 | <?php |
||
| 9 | abstract class CommandAbstract extends Command implements Config\ConfigAwareInterface, Log\LoggerAwareInterface |
||
| 10 | { |
||
| 11 | use Log\LoggerAwareTrait; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var Config\ConfigInterface |
||
| 15 | */ |
||
| 16 | protected $config; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param Config\ConfigInterface $config |
||
| 20 | */ |
||
| 21 | 3 | public function setConfig(Config\ConfigInterface $config) |
|
| 25 | } |
||
| 26 |