public function TestObjectMetadata::isSingleValuedAssociation in Plug 7
Checks if the given field is a mapped single valued association for this class.
Parameters
string $fieldName:
Return value
boolean
Overrides ClassMetadata::isSingleValuedAssociation
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ PersistentObjectTest.php, line 223
Class
Namespace
Doctrine\Tests\Common\PersistenceCode
public function isSingleValuedAssociation($fieldName) {
return $fieldName === 'parent';
}