Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ddfb78a

Browse filesBrowse files
committed
merged branch hhamon/fix_commands_doc (PR symfony#1844)
Commits ------- f2e4d35 [Console] harmonized commands documentation by changing ./app/console to php app/console. 41fe826 [SwiftmailerBundle] harmonized commands documentation by changing ./app/console to php app/console. 08072e4 [FrameworkBundle] harmonized commands documentation by changing ./app/console to php app/console. ec9c0aa [DoctrineBundle] harmonized commands documentation by changing ./app/console to php app/console. 1c082b8 [FrameworkBundle] added short description for the assets:install command. e16ccaa [SecurityBundle] added short description and help for the init:acl command. e90efdc [DoctrineBundle] removed extra point at the end of the commands' short descriptions. Discussion ---------- Fix commands doc
2 parents 3caa895 + f2e4d35 commit ddfb78a
Copy full SHA for ddfb78a

21 files changed

+68
-55
lines changed

‎src/Symfony/Bundle/DoctrineBundle/Command/CreateDatabaseDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/CreateDatabaseDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ protected function configure()
3434
The <info>doctrine:database:create</info> command creates the default
3535
connections database:
3636
37-
<info>./app/console doctrine:database:create</info>
37+
<info>php app/console doctrine:database:create</info>
3838
3939
You can also optionally specify the name of a connection to create the
4040
database for:
4141
42-
<info>./app/console doctrine:database:create --connection=default</info>
42+
<info>php app/console doctrine:database:create --connection=default</info>
4343
EOT
4444
);
4545
}

‎src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/DropDatabaseDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ protected function configure()
3434
The <info>doctrine:database:drop</info> command drops the default connections
3535
database:
3636
37-
<info>./app/console doctrine:database:drop</info>
37+
<info>php app/console doctrine:database:drop</info>
3838
3939
The --force parameter has to be used to actually drop the database.
4040
4141
You can also optionally specify the name of a connection to drop the database
4242
for:
4343
44-
<info>./app/console doctrine:database:drop --connection=default</info>
44+
<info>php app/console doctrine:database:drop --connection=default</info>
4545
4646
<error>Be careful: All data in a given database will be lost when executing
4747
this command.</error>

‎src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/GenerateEntitiesDoctrineCommand.php
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,27 +43,27 @@ protected function configure()
4343
4444
* To a bundle:
4545
46-
<info>./app/console doctrine:generate:entities MyCustomBundle</info>
46+
<info>php app/console doctrine:generate:entities MyCustomBundle</info>
4747
4848
* To a single entity:
4949
50-
<info>./app/console doctrine:generate:entities MyCustomBundle:User</info>
51-
<info>./app/console doctrine:generate:entities MyCustomBundle/Entity/User</info>
50+
<info>php app/console doctrine:generate:entities MyCustomBundle:User</info>
51+
<info>php app/console doctrine:generate:entities MyCustomBundle/Entity/User</info>
5252
5353
* To a namespace
5454
55-
<info>./app/console doctrine:generate:entities MyCustomBundle/Entity</info>
55+
<info>php app/console doctrine:generate:entities MyCustomBundle/Entity</info>
5656
5757
If the entities are not stored in a bundle, and if the classes do not exist,
5858
the command has no way to guess where they should be generated. In this case,
5959
you must provide the <comment>--path</comment> option:
6060
61-
<info>./app/console doctrine:generate:entities Blog/Entity --path=src/</info>
61+
<info>php app/console doctrine:generate:entities Blog/Entity --path=src/</info>
6262
6363
You should provide the <comment>--no-backup</comment> option if you don't mind to back up files
6464
before to generate entities:
6565
66-
<info>./app/console doctrine:generate:entities Blog/Entity --no-backup</info>
66+
<info>php app/console doctrine:generate:entities Blog/Entity --no-backup</info>
6767
6868
<error>Important:</error> Even if you specified Inheritance options in your
6969
XML or YAML Mapping files the generator cannot generate the base and

‎src/Symfony/Bundle/DoctrineBundle/Command/ImportMappingDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/ImportMappingDoctrineCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ protected function configure()
4242
The <info>doctrine:mapping:import</info> command imports mapping information
4343
from an existing database:
4444
45-
<info>./app/console doctrine:mapping:import "MyCustomBundle" xml</info>
45+
<info>php app/console doctrine:mapping:import "MyCustomBundle" xml</info>
4646
4747
You can also optionally specify which entity manager to import from with the
4848
<info>--em</info> option:
4949
50-
<info>./app/console doctrine:mapping:import "MyCustomBundle" xml --em=default</info>
50+
<info>php app/console doctrine:mapping:import "MyCustomBundle" xml --em=default</info>
5151
5252
If you don't want to map every entity that can be found in the database, use the
5353
<info>--filter</info> option. It will try to match the targeted mapped entity with the
5454
provided pattern string.
5555
56-
<info>./app/console doctrine:mapping:import "MyCustomBundle" xml --filter=MyMatchedEntity</info>
56+
<info>php app/console doctrine:mapping:import "MyCustomBundle" xml --filter=MyMatchedEntity</info>
5757
5858
Use the <info>--force</info> option, if you want to override existing mapping files:
5959
60-
<info>./app/console doctrine:mapping:import "MyCustomBundle" xml --force</info>
60+
<info>php app/console doctrine:mapping:import "MyCustomBundle" xml --force</info>
6161
EOT
6262
);
6363
}

‎src/Symfony/Bundle/DoctrineBundle/Command/InfoDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/InfoDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ protected function configure()
3434
entities exist and possibly if their mapping information contains errors or
3535
not.
3636
37-
<info>./app/console doctrine:mapping:info</info>
37+
<info>php app/console doctrine:mapping:info</info>
3838
3939
If you are using multiple entity managers you can pick your choice with the
4040
<info>--em</info> option:
4141
42-
<info>./app/console doctrine:mapping:info --em=default</info>
42+
<info>php app/console doctrine:mapping:info --em=default</info>
4343
EOT
4444
);
4545
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearMetadataCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearMetadataCacheDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ protected function configure()
3636
The <info>doctrine:cache:clear-metadata</info> command clears all metadata
3737
cache for the default entity manager:
3838
39-
<info>./app/console doctrine:cache:clear-metadata</info>
39+
<info>php app/console doctrine:cache:clear-metadata</info>
4040
4141
You can also optionally specify the <comment>--em</comment> option to specify
4242
which entity manager to clear the cache for:
4343
44-
<info>./app/console doctrine:cache:clear-metadata --em=default</info>
44+
<info>php app/console doctrine:cache:clear-metadata --em=default</info>
4545
EOT
4646
);
4747
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearQueryCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearQueryCacheDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ protected function configure()
3636
The <info>doctrine:cache:clear-query</info> command clears all query cache for
3737
the default entity manager:
3838
39-
<info>./app/console doctrine:cache:clear-query</info>
39+
<info>php app/console doctrine:cache:clear-query</info>
4040
4141
You can also optionally specify the <comment>--em</comment> option to specify
4242
which entity manager to clear the cache for:
4343
44-
<info>./app/console doctrine:cache:clear-query --em=default</info>
44+
<info>php app/console doctrine:cache:clear-query --em=default</info>
4545
EOT
4646
);
4747
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearResultCacheDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ClearResultCacheDoctrineCommand.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,27 +36,27 @@ protected function configure()
3636
The <info>doctrine:cache:clear-result</info> command clears all result cache
3737
for the default entity manager:
3838
39-
<info>./app/console doctrine:cache:clear-result</info>
39+
<info>php app/console doctrine:cache:clear-result</info>
4040
4141
You can also optionally specify the <comment>--em</comment> option to specify
4242
which entity manager to clear the cache for:
4343
44-
<info>./app/console doctrine:cache:clear-result --em=default</info>
44+
<info>php app/console doctrine:cache:clear-result --em=default</info>
4545
4646
If you don't want to clear all result cache you can specify some additional
4747
options to control what cache is deleted:
4848
49-
<info>./app/console doctrine:cache:clear-result --id=cache_key</info>
49+
<info>php app/console doctrine:cache:clear-result --id=cache_key</info>
5050
5151
Or you can specify a <comment>--regex</comment> to delete cache entries that
5252
match it:
5353
54-
<info>./app/console doctrine:cache:clear-result --regex="user_(.*)"</info>
54+
<info>php app/console doctrine:cache:clear-result --regex="user_(.*)"</info>
5555
5656
You can also specify a <comment>--prefix</comment> or
5757
<comment>--suffix</comment> to delete cache entries for:
5858
59-
<info>./app/console doctrine:cache:clear-result --prefix="user_" --suffix="_frontend"</info>
59+
<info>php app/console doctrine:cache:clear-result --prefix="user_" --suffix="_frontend"</info>
6060
EOT
6161
);
6262
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ConvertMappingDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/ConvertMappingDoctrineCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected function configure()
3939
The <info>doctrine:mapping:convert</info> command converts mapping information
4040
between supported formats:
4141
42-
<info>./app/console doctrine:mapping:convert xml /path/to/output</info>
42+
<info>php app/console doctrine:mapping:convert xml /path/to/output</info>
4343
EOT
4444
);
4545
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/CreateSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/CreateSchemaDoctrineCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ protected function configure()
3333

3434
$this
3535
->setName('doctrine:schema:create')
36-
->setDescription('Executes (or dumps) the SQL needed to generate the database schema.')
36+
->setDescription('Executes (or dumps) the SQL needed to generate the database schema')
3737
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3838
->setHelp(<<<EOT
3939
The <info>doctrine:schema:create</info> command executes the SQL needed to
4040
generate the database schema for the default entity manager:
4141
42-
<info>./app/console doctrine:schema:create</info>
42+
<info>php app/console doctrine:schema:create</info>
4343
4444
You can also generate the database schema for a specific entity manager:
4545
46-
<info>./app/console doctrine:schema:create --em=default</info>
46+
<info>php app/console doctrine:schema:create --em=default</info>
4747
4848
Finally, instead of executing the SQL, you can output the SQL:
4949
50-
<info>./app/console doctrine:schema:create --dump-sql</info>
50+
<info>php app/console doctrine:schema:create --dump-sql</info>
5151
EOT
5252
);
5353
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/DropSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/DropSchemaDoctrineCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ protected function configure()
3232

3333
$this
3434
->setName('doctrine:schema:drop')
35-
->setDescription('Executes (or dumps) the SQL needed to drop the current database schema.')
35+
->setDescription('Executes (or dumps) the SQL needed to drop the current database schema')
3636
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3737
->setHelp(<<<EOT
3838
The <info>doctrine:schema:drop</info> command generates the SQL needed to
3939
drop the database schema of the default entity manager:
4040
41-
<info>./app/console doctrine:schema:drop --dump-sql</info>
41+
<info>php app/console doctrine:schema:drop --dump-sql</info>
4242
4343
Alternatively, you can execute the generated queries:
4444
45-
<info>./app/console doctrine:schema:drop --force</info>
45+
<info>php app/console doctrine:schema:drop --force</info>
4646
4747
You can also optionally specify the name of a entity manager to drop the
4848
schema for:
4949
50-
<info>./app/console doctrine:schema:drop --em=default</info>
50+
<info>php app/console doctrine:schema:drop --em=default</info>
5151
EOT
5252
);
5353
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/EnsureProductionSettingsDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/EnsureProductionSettingsDoctrineCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ protected function configure()
3737
The <info>doctrine:ensure-production-settings</info> command ensures that
3838
Doctrine is properly configured for a production environment.:
3939
40-
<info>./app/console doctrine:ensure-production-settings</info>
40+
<info>php app/console doctrine:ensure-production-settings</info>
4141
4242
You can also optionally specify the <comment>--em</comment> option to specify
4343
which entity manager to use:
4444
45-
<info>./app/console doctrine:ensure-production-settings --em=default</info>
45+
<info>php app/console doctrine:ensure-production-settings --em=default</info>
4646
EOT
4747
);
4848
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/RunDqlDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/RunDqlDoctrineCommand.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@ protected function configure()
3737
The <info>doctrine:query:dql</info> command executes the given DQL query and
3838
outputs the results:
3939
40-
<info>./app/console doctrine:query:dql "SELECT u FROM UserBundle:User u"</info>
40+
<info>php app/console doctrine:query:dql "SELECT u FROM UserBundle:User u"</info>
4141
4242
You can also optional specify some additional options like what type of
4343
hydration to use when executing the query:
4444
45-
<info>./app/console doctrine:query:dql "SELECT u FROM UserBundle:User u" --hydrate=array</info>
45+
<info>php app/console doctrine:query:dql "SELECT u FROM UserBundle:User u" --hydrate=array</info>
4646
4747
Additionally you can specify the first result and maximum amount of results to
4848
show:
4949
50-
<info>./app/console doctrine:query:dql "SELECT u FROM UserBundle:User u" --first-result=0 --max-result=30</info>
50+
<info>php app/console doctrine:query:dql "SELECT u FROM UserBundle:User u" --first-result=0 --max-result=30</info>
5151
EOT
5252
);
5353
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/RunSqlDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/RunSqlDoctrineCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protected function configure()
3737
The <info>doctrine:query:sql</info> command executes the given DQL query and
3838
outputs the results:
3939
40-
<info>./app/console doctrine:query:sql "SELECT * from user"</info>
40+
<info>php app/console doctrine:query:sql "SELECT * from user"</info>
4141
EOT
4242
);
4343
}

‎src/Symfony/Bundle/DoctrineBundle/Command/Proxy/UpdateSchemaDoctrineCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/DoctrineBundle/Command/Proxy/UpdateSchemaDoctrineCommand.php
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function configure()
3333

3434
$this
3535
->setName('doctrine:schema:update')
36-
->setDescription('Executes (or dumps) the SQL needed to update the database schema to match the current mapping metadata.')
36+
->setDescription('Executes (or dumps) the SQL needed to update the database schema to match the current mapping metadata')
3737
->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command')
3838
->setHelp(<<<EOT
3939
The <info>doctrine:schema:update</info> command generates the SQL needed to
@@ -43,15 +43,15 @@ protected function configure()
4343
For example, if you add metadata for a new column to an entity, this command
4444
would generate and output the SQL needed to add the new column to the database:
4545
46-
<info>./app/console doctrine:schema:update --dump-sql</info>
46+
<info>php app/console doctrine:schema:update --dump-sql</info>
4747
4848
Alternatively, you can execute the generated queries:
4949
50-
<info>./app/console doctrine:schema:update --force</info>
50+
<info>php app/console doctrine:schema:update --force</info>
5151
5252
You can also update the database schema for a specific entity manager:
5353
54-
<info>./app/console doctrine:schema:update --em=default</info>
54+
<info>php app/console doctrine:schema:update --em=default</info>
5555
EOT
5656
);
5757
}

‎src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ protected function configure()
3434
new InputArgument('target', InputArgument::REQUIRED, 'The target directory (usually "web")'),
3535
))
3636
->addOption('symlink', null, InputOption::VALUE_NONE, 'Symlinks the assets instead of copying it')
37+
->setDescription('Install bundles web assets under a public web directory')
3738
->setHelp(<<<EOT
3839
The <info>assets:install</info> command installs bundle assets into a given
3940
directory (e.g. the web directory).
4041
41-
<info>./app/console assets:install web [--symlink]</info>
42+
<info>php app/console assets:install web [--symlink]</info>
4243
4344
A "bundles" directory will be created inside the target directory, and the
4445
"Resources/public" directory of each bundle will be copied into it.

‎src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/FrameworkBundle/Command/CacheClearCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ protected function configure()
4242
The <info>cache:clear</info> command clears the application cache for a given environment
4343
and debug mode:
4444
45-
<info>./app/console cache:clear --env=dev</info>
46-
<info>./app/console cache:clear --env=prod --no-debug</info>
45+
<info>php app/console cache:clear --env=dev</info>
46+
<info>php app/console cache:clear --env=prod --no-debug</info>
4747
EOF
4848
)
4949
;

‎src/Symfony/Bundle/SecurityBundle/Command/InitAclCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/Command/InitAclCommand.php
+13-1Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,19 @@ protected function configure()
3131
{
3232
$this
3333
->setName('init:acl')
34-
;
34+
->setDescription('Mounts ACL tables in the database')
35+
->setHelp(<<<EOT
36+
The <info>init:acl</info> command mounts ACL tables in the database.
37+
38+
<info>php app/console ini:acl</info>
39+
40+
The name of the DBAL connection must be configured in your <info>app/config/security.yml</info> configuration file in the <info>security.acl.connection</info> variable.
41+
42+
<info>security:
43+
acl:
44+
connection: default</info>
45+
EOT
46+
);
3547
}
3648

3749
/**

‎src/Symfony/Bundle/SwiftmailerBundle/Command/SendEmailCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SwiftmailerBundle/Command/SendEmailCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ protected function configure()
3535
->addOption('message-limit', 0, InputOption::VALUE_OPTIONAL, 'The maximum number of messages to send.')
3636
->addOption('time-limit', 0, InputOption::VALUE_OPTIONAL, 'The time limit for sending messages (in seconds).')
3737
->setHelp(<<<EOF
38-
The <info>swiftmailer:spool:send</info> command send all emails from the spool.
38+
The <info>swiftmailer:spool:send</info> command sends all emails from the spool.
3939
40-
<info>./app/console swiftmailer:spool:send --message-limit=10 --time-limit=10</info>
40+
<info>php app/console swiftmailer:spool:send --message-limit=10 --time-limit=10</info>
4141
4242
EOF
4343
)

‎src/Symfony/Component/Console/Command/HelpCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Command/HelpCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ protected function configure()
4444
->setHelp(<<<EOF
4545
The <info>help</info> command displays help for a given command:
4646
47-
<info>./app/console help list</info>
47+
<info>php app/console help list</info>
4848
4949
You can also output the help as XML by using the <comment>--xml</comment> option:
5050
51-
<info>./app/console help --xml list</info>
51+
<info>php app/console help --xml list</info>
5252
EOF
5353
);
5454
}

‎src/Symfony/Component/Console/Command/ListCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Command/ListCommand.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ protected function configure()
4040
->setHelp(<<<EOF
4141
The <info>list</info> command lists all commands:
4242
43-
<info>./app/console list</info>
43+
<info>php app/console list</info>
4444
4545
You can also display the commands for a specific namespace:
4646
47-
<info>./app/console list test</info>
47+
<info>php app/console list test</info>
4848
4949
You can also output the information as XML by using the <comment>--xml</comment> option:
5050
51-
<info>./app/console list --xml</info>
51+
<info>php app/console list --xml</info>
5252
EOF
5353
);
5454
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.