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


PHP InputOption::__construct方法代码示例

本文整理汇总了PHP中Symfony\Component\Console\Input\InputOption::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP InputOption::__construct方法的具体用法?PHP InputOption::__construct怎么用?PHP InputOption::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Symfony\Component\Console\Input\InputOption的用法示例。


在下文中一共展示了InputOption::__construct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($name, $shortcut = null, $mode = null, $description = '', $default = null, $question = null)
 {
     parent::__construct($name, $shortcut, $mode, $description, $default);
     $this->name = $name;
     $this->question = $question;
     $this->default = $default;
 }
开发者ID:silvadanilo,项目名称:lazy-option-command,代码行数:7,代码来源:LazyInputOption.php

示例2: __construct

 /**
  * Constructor.
  *
  * @param string  $name        The option name
  * @param string  $description A description text
  *
  * @api
  */
 public function __construct($name, $description = '')
 {
     if ('--' === substr($name, 0, 2)) {
         $name = substr($name, 2);
     }
     $this->name = $name;
     $this->description = $description;
     parent::__construct($name, null, InputOption::VALUE_OPTIONAL, $description, null);
 }
开发者ID:kingsj,项目名称:core,代码行数:17,代码来源:InputSwitch.php

示例3: __construct

 public function __construct($config_path, $name, $shortcut = null, $mode = null, $description = '', $default = null, $required = true, $callback = null)
 {
     parent::__construct($name, $shortcut, $mode, $description, $default);
     if (empty($config_path)) {
         throw new \InvalidArgumentException(sprintf('The config option "%s" is not mapped to a configuration parameter.', $name));
     }
     $this->config_path = $config_path;
     $this->required = $required;
     $this->callback = $callback;
 }
开发者ID:inetprocess,项目名称:sugarcli,代码行数:10,代码来源:InputConfigOption.php

示例4: __construct

 /**
  * Constructor
  *
  * @param string $name
  * @param string $frontendType
  * @param int $mode
  * @param string $configPath
  * @param string $description
  * @param string|array|null $defaultValue
  * @param string|array|null $shortcut
  */
 public function __construct($name, $frontendType, $mode, $configPath, $description = '', $defaultValue = null, $shortcut = null)
 {
     $this->frontendType = $frontendType;
     $this->configPath = $configPath;
     parent::__construct($name, $shortcut, $mode, $description, $defaultValue);
 }
开发者ID:pradeep-wagento,项目名称:magento2,代码行数:17,代码来源:AbstractConfigOption.php


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