選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 
Florian Eisenmenger 41ccc32b5d checkin 2年前
..
Exception checkin 2年前
QuestionPerformer checkin 2年前
Test/Unit checkin 2年前
Cli.php checkin 2年前
CommandList.php checkin 2年前
CommandListInterface.php checkin 2年前
CommandLocator.php checkin 2年前
GenerationDirectoryAccess.php checkin 2年前
README.md checkin 2年前

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>