1
0
Fork 0

Moved setter before getter and added @inheritDoc

pull/1523/head
deguif 2013-01-24 13:04:37 +01:00
parent f3dec1cba2
commit 3c21dc1499
1 changed files with 11 additions and 5 deletions

View File

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