1
0
Fork 0

Fix toString of aliases

pull/367/head
Jordi Boggiano 2012-02-25 04:18:10 +01:00
parent a04f44a4f1
commit ca8845f44f
1 changed files with 1 additions and 1 deletions

View File

@ -254,6 +254,6 @@ class AliasPackage extends BasePackage
} }
public function __toString() public function __toString()
{ {
return $this->aliasOf->__toString(); return parent::__toString().' (alias of '.$this->aliasOf->getVersion().')';
} }
} }