1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Rename Package interfaces to reduce BC issues

This commit is contained in:
Jordi Boggiano 2012-08-23 15:52:40 +02:00
parent 8a275336a1
commit d6de4a0036
30 changed files with 750 additions and 683 deletions

View file

@ -18,7 +18,7 @@ class ComposerTest extends TestCase
public function testSetGetPackage()
{
$composer = new Composer();
$package = $this->getMock('Composer\Package\PackageInterface');
$package = $this->getMock('Composer\Package\RootPackageInterface');
$composer->setPackage($package);
$this->assertSame($package, $composer->getPackage());