1
0
Fork 0

Merge pull request #1523 from deguif/master

Moved setter for repository before getter in BasePackage class
pull/1520/merge
Jordi Boggiano 2013-01-25 01:19:31 -08:00
commit 1539c54a1d
1 changed files with 11 additions and 5 deletions

View File

@ -114,11 +114,9 @@ abstract class BasePackage implements PackageInterface
return $this->id; return $this->id;
} }
public function getRepository() /**
{ * {@inheritDoc}
return $this->repository; */
}
public function setRepository(RepositoryInterface $repository) public function setRepository(RepositoryInterface $repository)
{ {
if ($this->repository) { if ($this->repository) {
@ -127,6 +125,14 @@ abstract class BasePackage implements PackageInterface
$this->repository = $repository; $this->repository = $repository;
} }
/**
* {@inheritDoc}
*/
public function getRepository()
{
return $this->repository;
}
/** /**
* checks if this package is a platform package * checks if this package is a platform package
* *