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


PHP Builder::getSystemConfig方法代碼示例

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


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

示例1: execute

 /**
  * Runs Pdepend with the given criteria as arguments
  */
 public function execute()
 {
     if (!is_writable($this->location)) {
         throw new \Exception(sprintf('The location %s is not writable.', $this->location));
     }
     $pdepend = $this->phpci->findBinary('pdepend');
     if (!$pdepend) {
         $this->phpci->logFailure('Could not find pdepend.');
         return false;
     }
     $cmd = $pdepend . ' --summary-xml="%s" --jdepend-chart="%s" --overview-pyramid="%s" %s "%s"';
     $this->removeBuildArtifacts();
     // If we need to ignore directories
     if (count($this->phpci->ignore)) {
         $ignore = ' --ignore=' . implode(',', $this->phpci->ignore);
     } else {
         $ignore = '';
     }
     $success = $this->phpci->executeCommand($cmd, $this->location . DIRECTORY_SEPARATOR . $this->summary, $this->location . DIRECTORY_SEPARATOR . $this->chart, $this->location . DIRECTORY_SEPARATOR . $this->pyramid, $ignore, $this->directory);
     $config = $this->phpci->getSystemConfig('phpci');
     if ($success) {
         $this->phpci->logSuccess(sprintf("Pdepend successful. You can use %s\n, ![Chart](%s \"Pdepend Chart\")\n\n                    and ![Pyramid](%s \"Pdepend Pyramid\")\n\n                    for inclusion in the readme.md file", $config['url'] . '/build/pdepend/' . $this->summary, $config['url'] . '/build/pdepend/' . $this->chart, $config['url'] . '/build/pdepend/' . $this->pyramid));
     } else {
         $this->phpci->logFailure(sprintf("The function '%s' failed"));
     }
     return $success;
 }
開發者ID:kukupigs,項目名稱:PHPCI,代碼行數:30,代碼來源:Pdepend.php

示例2: __construct

 public function __construct(Builder $phpci, Build $build, \Swift_Mailer $mailer, array $options = array())
 {
     $this->phpci = $phpci;
     $this->build = $build;
     $this->options = $options;
     $phpCiSettings = $phpci->getSystemConfig('phpci');
     $this->fromAddress = isset($phpCiSettings['email_settings']['from_address']) ? $phpCiSettings['email_settings']['from_address'] : "notifications-ci@phptesting.org";
     $this->mailer = $mailer;
 }
開發者ID:kukupigs,項目名稱:PHPCI,代碼行數:9,代碼來源:Email.php


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