Since: 1.0
Author: Bernhard Schussek (bschussek@gmail.com)
示例#1
0
 public function testDefaultHandlerMethod()
 {
     $this->assertSame('handle', $this->config->getHandlerMethod());
 }
示例#2
0
 /**
  * Creates a new console application.
  *
  * @param string $name    The name of the application.
  * @param string $version The application version.
  */
 public function __construct($name = null, $version = null)
 {
     $this->name = $name;
     $this->version = $version;
     parent::__construct();
 }
示例#3
0
 /**
  * {@inheritdoc}
  */
 protected function getDefaultLenientArgsParsing()
 {
     return $this->applicationConfig ? $this->applicationConfig->isLenientArgsParsingEnabled() : parent::getDefaultLenientArgsParsing();
 }