Implemented SourceMembershipInformation and tests

This commit is contained in:
Kevin Frantz
2018-11-24 16:42:51 +01:00
parent ed41dd6bf8
commit ce6607fa1a
4 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?php
namespace App\Domain\SourceManagement;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\SourceInterface;
use Doctrine\Common\Collections\ArrayCollection;
class SourceMembershipInformation implements SourceMembershipInformationInterface
{
/**
* @var SourceInterface
*/
private $source;
/**
* @var Collection
*/
private $memberships;
public function __construct(SourceInterface $source)
{
$this->source = $source;
}
private function itterateOverMemberships(Collection $memberships): void
{
/**
* @var SourceInterface
*/
foreach ($memberships as $membership) {
if (!$this->memberships->contains($membership)) {
$this->memberships->add($membership);
$this->itterateOverMemberships($membership->getMemberships());
}
}
}
public function getAllMemberships(): Collection
{
$this->memberships = new ArrayCollection();
$this->itterateOverMemberships($this->source->getMemberships());
return $this->memberships;
}
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Domain\SourceManagement;
use Doctrine\Common\Collections\Collection;
interface SourceMembershipInformationInterface
{
public function getAllMemberships(): Collection;
}