Файл: symfony-2.7/src/Symfony/Bridge/ProxyManager/Tests/LazyProxy/Fixtures/php/lazy_service_structure.txt
Строк: 34
<?php
use %a
class ProjectServiceContainer extends Container
{%a
public function getFooService($lazyLoad = true)
{
if
($lazyLoad) {
$container = $this;
return
$this->services['foo'] = new stdClass_%s(
function
(&$wrappedInstance, \ProxyManager\Proxy\LazyLoadingInterface $proxy)
use ($container) {
$wrappedInstance =
$container->getFooService(false);
$proxy->setProxyInitializer(null);
return true;
}
);
}
return new \stdClass();
}
}
class stdClass_%s extends \stdClass implements
\ProxyManager\Proxy\VirtualProxyInterface
{%a}%A