You are here

public function LazyLoadableObjectClassMetadata::getIdentifierValues in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/LazyLoadableObjectClassMetadata.php \Doctrine\Tests\Common\Proxy\LazyLoadableObjectClassMetadata::getIdentifierValues()

Returns the identifier of this object as an array with field name as key.

Has to return an empty array if no identifier isset.

Parameters

object $object:

Return value

array

Overrides ClassMetadata::getIdentifierValues

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/LazyLoadableObjectClassMetadata.php, line 191

Class

LazyLoadableObjectClassMetadata
Class metadata test asset for @author Marco Pivetta <ocramius@gmail.com> @since 2.4

Namespace

Doctrine\Tests\Common\Proxy

Code

public function getIdentifierValues($object) {
  throw new \BadMethodCallException('not implemented');
}