當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Application::getLongVersion方法代碼示例

本文整理匯總了PHP中Symfony\Component\Console\Application::getLongVersion方法的典型用法代碼示例。如果您正苦於以下問題:PHP Application::getLongVersion方法的具體用法?PHP Application::getLongVersion怎麽用?PHP Application::getLongVersion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Symfony\Component\Console\Application的用法示例。


在下文中一共展示了Application::getLongVersion方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getLongVersion

 public function getLongVersion()
 {
     $version = parent::getLongVersion() . ' by <comment>Fabien Potencier</comment>';
     if ('@' . 'git-commit@' !== ($commit = '@git-commit@')) {
         $version .= ' (' . substr($commit, 0, 7) . ')';
     }
     return $version;
 }
開發者ID:bgotink,項目名稱:PHP-CS-Fixer,代碼行數:8,代碼來源:Application.php

示例2: getLongVersion

 public function getLongVersion()
 {
     $version = parent::getLongVersion();
     $commit = '@git-commit@';
     if ('@' . 'git-commit@' !== $commit) {
         $version .= ' (' . substr($commit, 0, 7) . ')';
     }
     return $version;
 }
開發者ID:sagikazarmark,項目名稱:jane-openapi,代碼行數:9,代碼來源:Application.php

示例3: getLongVersion

 public function getLongVersion()
 {
     $version = parent::getLongVersion();
     $commit = '@git-commit-short@';
     if ('@' . 'git-commit-short@' !== $commit) {
         $version .= " ({$commit})";
     }
     return $version . ' by <comment>Stefano Torresi</comment>';
 }
開發者ID:stefanotorresi,項目名稱:thorr-advent,代碼行數:9,代碼來源:Application.php

示例4: getLongVersion

 public function getLongVersion()
 {
     $version = parent::getLongVersion() . ' by <comment>Fabien Potencier</comment>';
     $commit = '41f70154642ec0f9ea9ea9c290943f3b5dfa76fc';
     if ('@' . 'git-commit@' !== $commit) {
         $version .= ' (' . substr($commit, 0, 7) . ')';
     }
     return $version;
 }
開發者ID:Ryu0621,項目名稱:SaNaVi,代碼行數:9,代碼來源:Application.php

示例5: getLongVersion

 /**
  * @return string
  */
 public function getLongVersion()
 {
     $version = parent::getLongVersion() . ' by <comment>Ivan Shcherbak</comment>';
     $commit = '@git-commit@';
     if ('@' . 'git-commit@' !== $commit) {
         $version .= ' (' . substr($commit, 0, 7) . ')';
     }
     return $version;
 }
開發者ID:funivan,項目名稱:cs,代碼行數:12,代碼來源:Application.php

示例6: getLongVersion

    public function getLongVersion()
    {
        $bigtext = <<<'BIGTEXT'
 /$$$$$$$  /$$
| $$__  $$| $$
| $$  \ $$| $$$$$$$   /$$$$$$   /$$$$$$   /$$$$$$  /$$    /$$ /$$$$$$   /$$$$$$
| $$$$$$$/| $$__  $$ /$$__  $$ /$$__  $$ /$$__  $$|  $$  /$$//$$__  $$ /$$__  $$
| $$____/ | $$  \ $$| $$  \ $$| $$  \__/| $$$$$$$$ \  $$/$$/| $$$$$$$$| $$  \__/
| $$      | $$  | $$| $$  | $$| $$      | $$_____/  \  $$$/ | $$_____/| $$
| $$      | $$  | $$|  $$$$$$/| $$      |  $$$$$$$   \  $/  |  $$$$$$$| $$
|__/      |__/  |__/ \______/ |__/       \_______/    \_/    \_______/|__/
BIGTEXT;
        return "<comment>{$bigtext}</comment>\n\n" . parent::getLongVersion();
    }
開發者ID:dcousineau,項目名稱:phorever,代碼行數:14,代碼來源:Application.php

示例7: getLongVersion

 public function getLongVersion()
 {
     $version = parent::getLongVersion() . ' by <comment>Andrew Reddikh</comment>';
     return $version;
 }
開發者ID:redco,項目名稱:redcode-precommit,代碼行數:5,代碼來源:Application.php

示例8: getLongVersion

 /**
  * {@inheritDoc}
  */
 public function getLongVersion()
 {
     return parent::getLongVersion() . ' ' . Composer::RELEASE_DATE;
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:7,代碼來源:Application.php

示例9: getLongVersion

 public function getLongVersion()
 {
     return parent::getLongVersion() . ' by <comment>Hannes Van De Vreken & Freek Van der Herten</comment>';
 }
開發者ID:spatie,項目名稱:7to5,代碼行數:4,代碼來源:Application.php

示例10: getLongVersion

 public function getLongVersion()
 {
     return self::$logo . parent::getLongVersion();
 }
開發者ID:kpacha,項目名稱:suricate-php-sdk,代碼行數:4,代碼來源:Application.php

示例11: getLongVersion

 /**
  * {@inheritDoc}
  */
 public function getLongVersion()
 {
     return parent::getLongVersion() . ' ' . Virtphp::RELEASE_DATE;
 }
開發者ID:Ryan4021,項目名稱:virtphp,代碼行數:7,代碼來源:Application.php

示例12: getLongVersion

 /**
  * {@inheritDoc}
  */
 public function getLongVersion()
 {
     if (Composer::BRANCH_ALIAS_VERSION) {
         return sprintf('<info>%s</info> version <comment>%s (%s)</comment> %s', $this->getName(), Composer::BRANCH_ALIAS_VERSION, $this->getVersion(), Composer::RELEASE_DATE);
     }
     return parent::getLongVersion() . ' ' . Composer::RELEASE_DATE;
 }
開發者ID:hanovruslan,項目名稱:composer,代碼行數:10,代碼來源:Application.php

示例13: getLongVersion

 /**
  * {@inheritdoc}
  */
 public function getLongVersion()
 {
     return parent::getLongVersion() . sprintf(' (kernel: <comment>%s</>, env: <comment>%s</>, debug: <comment>%s</>)', $this->kernel->getName(), $this->kernel->getEnvironment(), $this->kernel->isDebug() ? 'true' : 'false');
 }
開發者ID:symfony,項目名稱:symfony,代碼行數:7,代碼來源:Application.php

示例14: getLongVersion

 public function getLongVersion()
 {
     return parent::getLongVersion() . ' ' . Dotfiles::RELEASE_DATE;
 }
開發者ID:slbmeh,項目名稱:dotfiles,代碼行數:4,代碼來源:Application.php

示例15: getLongVersion

 /**
  * @return string
  */
 public function getLongVersion()
 {
     $version = parent::getLongVersion() . ' by <comment>Rebangm</comment>';
     return $version;
 }
開發者ID:rebangm,項目名稱:php-checker,代碼行數:8,代碼來源:Application.php


注:本文中的Symfony\Component\Console\Application::getLongVersion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。