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