public function RuntimePublicReflectionPropertyTestProxyMock::__setInitialized in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Reflection/RuntimePublicReflectionPropertyTest.php \Doctrine\Tests\Common\Reflection\RuntimePublicReflectionPropertyTestProxyMock::__setInitialized()
Marks the proxy as initialized or not.
Parameters
boolean $initialized:
Return value
void
Overrides Proxy::__setInitialized
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Reflection/ RuntimePublicReflectionPropertyTest.php, line 131
Class
- RuntimePublicReflectionPropertyTestProxyMock
- Mock that simulates proxy public property lazy loading
Namespace
Doctrine\Tests\Common\ReflectionCode
public function __setInitialized($initialized) {
$this->initialized = (bool) $initialized;
}