Skip to content
This repository has been archived by the owner on Jan 29, 2019. It is now read-only.

Latest commit

 

History

History
15 lines (10 loc) · 290 Bytes

Cli.md

File metadata and controls

15 lines (10 loc) · 290 Bytes

Cli

The Cli class is a small wrapper around Symfony Process component.

Usage

use Webcreate\Util\Cli;

$cli = new Cli();
$commandline = $cli->prepare('/usr/bin/svn', array('list', 'svn://somerepos'));
$exitCode = $cli->execute($commandline);
$output = $cli->getOutput();