pchRepository::buildSvnLookCommand PHP Method

buildSvnLookCommand() abstract public method

Builds a svnlook command from the specified command, using the parameters for the specified repository (type).
abstract public buildSvnLookCommand ( string $command ) : pbsSystemProcess
$command string
return pbsSystemProcess
    public abstract function buildSvnLookCommand($command);

Usage Example

Example #1
0
 /**
  * Validate the current check
  *
  * Validate the check on the specified repository. Returns an array of 
  * found issues.
  * 
  * @param pchRepository $repository 
  * @return void
  */
 public function validate(pchRepository $repository)
 {
     $process = $repository->buildSvnLookCommand('log');
     $process->execute();
     return $this->parse($process->stdoutOutput);
 }
All Usage Examples Of pchRepository::buildSvnLookCommand