소스 검색

[SwiftmailerBundle] harmonized commands documentation by changing ./app/console to php app/console.

Hugo Hamon 14 년 전
부모
커밋
41fe82656b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Symfony/Bundle/SwiftmailerBundle/Command/SendEmailCommand.php

+ 2 - 2
src/Symfony/Bundle/SwiftmailerBundle/Command/SendEmailCommand.php

@@ -35,9 +35,9 @@ class SendEmailCommand extends ContainerAwareCommand
             ->addOption('message-limit', 0, InputOption::VALUE_OPTIONAL, 'The maximum number of messages to send.')
             ->addOption('time-limit', 0, InputOption::VALUE_OPTIONAL, 'The time limit for sending messages (in seconds).')
             ->setHelp(<<<EOF
-The <info>swiftmailer:spool:send</info> command send all emails from the spool.
+The <info>swiftmailer:spool:send</info> command sends all emails from the spool.
 
-<info>./app/console swiftmailer:spool:send --message-limit=10 --time-limit=10</info>
+<info>php app/console swiftmailer:spool:send --message-limit=10 --time-limit=10</info>
 
 EOF
             )