當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。