カスタム コンソール コマンド スクリプト内でコンテナーをフェッチするにはどうすればよいですか?
私は電話できることを望んでいます
$this->container->get('kernel')->getCachedir();
また
$this->getDoctrine();
上記の2つの例をコントローラー内で呼び出すことはできますが、コマンド内では呼び出すことができませんか?..以下の単純化された例を参照してください
namespace Portal\WeeklyConversionBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class ExampleCommand extends ContainerAwareCommand
{
protected function configure()
{
$this->setName('demo:greet')
->setDescription('Greet someone')
->addArgument('name', InputArgument::OPTIONAL, 'Who do you want to greet?')
->addOption('yell', null, InputOption::VALUE_NONE, 'If set, the task will yell in uppercase letters')
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$name = $input->getArgument('name');
if ($name) {
$text = 'Hello '.$name;
} else {
$text = 'Hello';
}
// this returns an error?
// $cacheDir = $this->container->get('kernel')->getCachedir();
// edit - this works
$this->getContainer()->get('kernel')->getCacheDir();
$output->writeln($text);
}
}
未定義のエラー メッセージを返しますか?.. どのように定義すればよいですか? アクセスできる ContainerAwareCommand を追加することで、this->container?