public function TestObjectMetadata::isCollectionValuedAssociation in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/PersistentObjectTest.php \Doctrine\Tests\Common\Persistence\TestObjectMetadata::isCollectionValuedAssociation()
Checks if the given field is a mapped collection valued association for this class.
Parameters
string $fieldName:
Return value
boolean
Overrides ClassMetadata::isCollectionValuedAssociation
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ PersistentObjectTest.php, line 213
Class
Namespace
Doctrine\Tests\Common\PersistenceCode
public function isCollectionValuedAssociation($fieldName) {
return $fieldName === 'children';
}