No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin hace 2 años
..
Exception checkin hace 2 años
QuestionPerformer checkin hace 2 años
Test/Unit checkin hace 2 años
Cli.php checkin hace 2 años
CommandList.php checkin hace 2 años
CommandListInterface.php checkin hace 2 años
CommandLocator.php checkin hace 2 años
GenerationDirectoryAccess.php checkin hace 2 años
README.md checkin hace 2 años

README.md

Console

This component contains Magento Cli and can be extended via DI configuration.

For example we can introduce new command in module using di.xml:

<type name="Magento\Framework\Console\CommandListInterface">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="test_me" xsi:type="object">Magento\MyModule\Console\TestMeCommand</item>
        </argument>
    </arguments>
</type>