当前位置: 首页>>代码示例>>PHP>>正文


PHP ArrayInput::getArgument方法代码示例

本文整理汇总了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());
     }
 }
开发者ID:yamildiego,项目名称:JY,代码行数:25,代码来源:InputTest.php

示例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);
 }
开发者ID:miguelibero,项目名称:meinhof,代码行数:9,代码来源:UpdateCommand.php

示例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');
 }
开发者ID:TheTypoMaster,项目名称:SPHERE-Framework,代码行数:9,代码来源:InputTest.php

示例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);
     }
 }
开发者ID:mark86092,项目名称:laravel-framework,代码行数:14,代码来源:Kernel.php


注:本文中的Symfony\Component\Console\Input\ArrayInput::getArgument方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。