1
0
Fork 0

* rename var from $composer to $output (for consistency)

pull/410/head
till 2012-03-08 15:56:52 +01:00
parent 953de35a0b
commit 99eb18d0ff
1 changed files with 3 additions and 3 deletions

View File

@ -110,16 +110,16 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
$this->process->execute(
$this->getSvnCommand('svn cat', $this->baseUrl . $identifier . 'composer.json' . $rev),
$composer
$output
);
if (!trim($composer)) {
if (!trim($output)) {
throw new \UnexpectedValueException(
'Failed to retrieve composer information for identifier ' . $identifier . ' in ' . $this->getUrl()
);
}
$composer = JsonFile::parseJson($composer);
$composer = JsonFile::parseJson($output);
if (!isset($composer['time'])) {
$this->process->execute(