本文整理汇总了PHP中Symfony\Component\Console\Input\ArrayInput::getArgument方法的典型用法代码示例。如果您正苦于以下问题:PHP ArrayInput::getArgument方法的具体用法?PHP ArrayInput::getArgument怎么用?PHP ArrayInput::getArgument使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\Console\Input\ArrayInput
的用法示例。
在下文中一共展示了ArrayInput::getArgument方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testArguments
public function testArguments()
{
$input = new ArrayInput(array('name' => 'foo'), new InputDefinition(array(new InputArgument('name'))));
$this->assertEquals('foo', $input->getArgument('name'), '->getArgument() returns the value for the given argument');
$input->setArgument('name', 'bar');
$this->assertEquals('bar', $input->getArgument('name'), '->setArgument() sets the value for a given argument');
$this->assertEquals(array('name' => 'bar'), $input->getArguments(), '->getArguments() returns all argument values');
$input = new ArrayInput(array('name' => 'foo'), new InputDefinition(array(new InputArgument('name'), new InputArgument('bar', InputArgument::OPTIONAL, '', 'default'))));
$this->assertEquals('default', $input->getArgument('bar'), '->getArgument() returns the default value for optional arguments');
$this->assertEquals(array('name' => 'foo', 'bar' => 'default'), $input->getArguments(), '->getArguments() returns all argument values, even optional ones');
try {
$input->setArgument('foo', 'bar');
$this->fail('->setArgument() throws a \\InvalidArgumentException if the argument does not exist');
} catch (\Exception $e) {
$this->assertInstanceOf('\\InvalidArgumentException', $e, '->setOption() throws a \\InvalidArgumentException if the option does not exist');
$this->assertEquals('The "foo" argument does not exist.', $e->getMessage());
}
try {
$input->getArgument('foo');
$this->fail('->getArgument() throws a \\InvalidArgumentException if the argument does not exist');
} catch (\Exception $e) {
$this->assertInstanceOf('\\InvalidArgumentException', $e, '->setOption() throws a \\InvalidArgumentException if the option does not exist');
$this->assertEquals('The "foo" argument does not exist.', $e->getMessage());
}
}
示例2: runSetup
protected function runSetup(InputInterface $input, OutputInterface $output)
{
$command = new SetupCommand();
if ($helper = $this->getHelperSet()) {
$command->setHelperSet($helper);
}
$input = new ArrayInput(array('dir' => $input->getArgument('dir'), '--update' => false));
$command->run($input, $output);
}
示例3: testGetInvalidArgument
/**
* @expectedException \InvalidArgumentException
* @expectedExceptionMessage The "foo" argument does not exist.
*/
public function testGetInvalidArgument()
{
$input = new ArrayInput(array('name' => 'foo'), new InputDefinition(array(new InputArgument('name'), new InputArgument('bar', InputArgument::OPTIONAL, '', 'default'))));
$input->getArgument('foo');
}
示例4: displayHelpOutputForCommand
/**
* Display the help output for the intended command.
*
* @param \Symfony\Component\Console\Input\InputInterface $input
* @param \Symfony\Component\Console\Output\OutputInterface $output
* @return void
*/
protected function displayHelpOutputForCommand($input, $output)
{
if (!$input->hasParameterOption('--help', true) && $input->hasArgument('command')) {
$input = new ArrayInput(['command' => $input->getArgument('command'), '--help']);
$this->handle($input, $output);
}
}