public function LazyLoadableObjectClassMetadata::getAssociationNames in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/LazyLoadableObjectClassMetadata.php \Doctrine\Tests\Common\Proxy\LazyLoadableObjectClassMetadata::getAssociationNames()
Returns a numerically indexed list of association names of this persistent class.
This array includes identifier associations if present on this class.
Return value
array
Overrides ClassMetadata::getAssociationNames
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ LazyLoadableObjectClassMetadata.php, line 151
Class
- LazyLoadableObjectClassMetadata
- Class metadata test asset for @author Marco Pivetta <ocramius@gmail.com> @since 2.4
Namespace
Doctrine\Tests\Common\ProxyCode
public function getAssociationNames() {
return array_keys($this->associations);
}