C.73 SymfonyConsoleTask

Executes Symfony2 console commands

Table C.96: Attributes

NameTypeDescriptionDefaultRequired
commandStringThe Symfony Console command to executen/aYes
consoleStringThe path to symfony console applicationapp/consoleNo

C.73.1 Examples

Simple example

<SymfonyConsole command="cache:clear"/>
            

Complex example

<SymfonyConsole command="cache:warmup">
  <arg name="env" value="prod" />
  <arg value="some/path/or/single/value" quotes="true">
</SymfonyConsole>

C.73.2 Supported Nested Tags

  • arg

    Table C.97: Attributes

    NameTypeDescriptionDefaultRequired
    nameStringthe name for this argument, -- will be appendedn/aNo
    valueStringthe value for the argumentn/aNo
    quotesStringset to true if the value should be enclosed in double quotesfalseNo