我有一个简单的symfony控制台应用程序,其中包含以下入口点
#!/usr/bin/env php
<?php
include __DIR__ . '/vendor/autoload.php';
use Rkmax\Application;
$app = new Application();
$app->run();
我的申请类
class Application extends BaseApplication
{
public function __construct($name = 'myapp', $version = '0.1')
{
parent::__construct($name, $version);
$this->add(new Command\SingleCommand());
}
}
和我的命令
class SingleCommand extends Command
{
const KEYWORDS = 'keywords';
protected function configure()
{
$this
->setName("single")
->setDescription("Sample")
->addArgument(self::KEYWORDS, InputArgument::OPTIONAL, "Keywords for the search")
;
}
public function run(InputInterface $input, OutputInterface $output)
{
$keywords = $input->getArgument(self::KEYWORDS);
// ...
}
}
我无法理解问题出在哪里我总是得到错误
[InvalidArgumentException]
The "keywords" argument does not exist.
答案 0 :(得分:1)
您应该覆盖执行方法,而不是运行。
public function execute(InputInterface $input, OutputInterface $output)
{
$keywords = $input->getArgument(self::KEYWORDS);
// ...
}
运行初始化 $ input 和输出,然后验证输入并调用执行($输入,$输出)以后。