当前位置: 首页>>代码示例>>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;未经允许,请勿转载。