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


PHP Descriptor\TextDescriptor类代码示例

本文整理汇总了PHP中Symfony\Component\Console\Descriptor\TextDescriptor的典型用法代码示例。如果您正苦于以下问题:PHP TextDescriptor类的具体用法?PHP TextDescriptor怎么用?PHP TextDescriptor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: asText

 /**
  * Returns a text representation of the Application.
  *
  * @param string $namespace An optional namespace name
  * @param bool   $raw       Whether to return raw command list
  *
  * @return string A string representing the Application
  *
  * @deprecated Deprecated since version 2.3, to be removed in 3.0.
  */
 public function asText($namespace = null, $raw = false)
 {
     $descriptor = new TextDescriptor();
     $output = new BufferedOutput(BufferedOutput::VERBOSITY_NORMAL, !$raw);
     $descriptor->describe($output, $this, array('namespace' => $namespace, 'raw_output' => true));
     return $output->fetch();
 }
开发者ID:astronautyan,项目名称:O2OMobile_PHP,代码行数:17,代码来源:Application.php

示例2: asText

 /**
  * Returns a text representation of the Application.
  *
  * @param string $namespace An optional namespace name
  * @param bool   $raw       Whether to return raw command list
  *
  * @return string A string representing the Application
  *
  * @deprecated since version 2.3, to be removed in 3.0.
  */
 public function asText($namespace = null, $raw = false)
 {
     @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.3 and will be removed in 3.0.', E_USER_DEPRECATED);
     $descriptor = new TextDescriptor();
     $output = new BufferedOutput(BufferedOutput::VERBOSITY_NORMAL, !$raw);
     $descriptor->describe($output, $this, array('namespace' => $namespace, 'raw_output' => true));
     return $output->fetch();
 }
开发者ID:anhnt36,项目名称:admin_Si,代码行数:18,代码来源:Application.php

示例3: asText

 /**
  * Returns a text representation of the command.
  *
  * @return string A string representing the command
  *
  * @deprecated Deprecated since version 2.3, to be removed in 3.0.
  */
 public function asText()
 {
     $descriptor = new TextDescriptor();
     $output = new BufferedOutput(BufferedOutput::VERBOSITY_NORMAL, true);
     $descriptor->describe($output, $this, array('raw_output' => true));
     return $output->fetch();
 }
开发者ID:GeorgeBroadley,项目名称:caffeine-vendor,代码行数:14,代码来源:Command.php

示例4: asText

 /**
  * Returns a text representation of the Application.
  *
  * @param string $namespace An optional namespace name
  * @param bool   $raw       Whether to return raw command list
  *
  * @return string A string representing the Application
  *
  * @deprecated Deprecated since version 2.3, to be removed in 3.0.
  */
 public function asText($namespace = null, $raw = false)
 {
     $descriptor = new TextDescriptor();
     return $descriptor->describe($this, array('namespace' => $namespace, 'raw_text' => $raw));
 }
开发者ID:GroupEsi,项目名称:PSE,代码行数:15,代码来源:Application.php

示例5: asText

 /**
  * Returns a textual representation of the InputDefinition.
  *
  * @return string A string representing the InputDefinition
  *
  * @deprecated Deprecated since version 2.3, to be removed in 3.0.
  */
 public function asText()
 {
     $descriptor = new TextDescriptor();
     return $descriptor->describe($this);
 }
开发者ID:d3ancole1995,项目名称:symfony,代码行数:12,代码来源:InputDefinition.php


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