Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo::isCollectionValuedAssociation PHP Method

isCollectionValuedAssociation() public method

Checks whether the class has a mapped reference or embed for the specified field and is a collection valued association.
public isCollectionValuedAssociation ( $fieldName )
    public function isCollectionValuedAssociation($fieldName)
    {
        return $this->isCollectionValuedReference($fieldName) || $this->isCollectionValuedEmbed($fieldName);
    }
ClassMetadataInfo