Knp\Bundle\KnpBundlesBundle\Entity\Bundle::isOwnerOrContributor PHP Method

isOwnerOrContributor() public method

public isOwnerOrContributor ( Owner $owner ) : boolean
$owner Owner
return boolean
    public function isOwnerOrContributor(Owner $owner)
    {
        if ($this->owner instanceof Developer && $this->owner->isEqualTo($owner)) {
            return true;
        }
        return $this->contributors->contains($owner);
    }