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


PHP Repository::run方法代码示例

本文整理汇总了PHP中Repository::run方法的典型用法代码示例。如果您正苦于以下问题:PHP Repository::run方法的具体用法?PHP Repository::run怎么用?PHP Repository::run使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Repository的用法示例。


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

示例1: getContent

 /**
  * Returns content of the blob.
  *
  * @throws ProcessException Error occurred while getting content of blob
  */
 public function getContent()
 {
     if (null === $this->content) {
         $this->content = $this->repository->run('cat-file', array('-p', $this->hash));
     }
     return $this->content;
 }
开发者ID:beubi,项目名称:gitlib,代码行数:12,代码来源:Blob.php

示例2: getFiles

 /**
  * Returns array of files whit diff informations.
  *
  * @param array $args   Additional arguments for log command.
  * @param type $asArray Returns array if TRUE, instance of Generator otherwise,
  * @return array|Generator
  */
 public function getFiles(array $args = [], $asArray = false)
 {
     $args[] = $this->getCommitHashFrom();
     $args[] = $this->getCommitHashTo();
     $diffRaw = $this->repository->run('diff', $args);
     if ($asArray) {
         $data = [];
         foreach ($this->parser->parse($diffRaw->getOutput()) as $file) {
             $data[] = $file;
         }
         return $data;
     }
     return $this->parser->parse($diffRaw->getOutput());
 }
开发者ID:3wil,项目名称:GIFTploy,代码行数:21,代码来源:Diff.php

示例3: getParserOutput

 /**
  * Prepare and run process for log command and returns instance of LogParser.
  *
  * @param array $args   Additional arguments for log command.
  * @return LogParser
  */
 protected function getParserOutput(array $args = [])
 {
     $logArgs = array_merge(['--numstat', '--summary', '--pretty=format:COMMITSTART%H%n%h%n%P%n%aN%n%ae%n%ct%n%s%n%b%nENDOFOUTPUTGITMESSAGE'], $args);
     return $this->repository->run('log', $logArgs)->getOutput();
 }
开发者ID:3wil,项目名称:GIFTploy,代码行数:11,代码来源:Log.php


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