Symfony\Component\DependencyInjection\Compiler\Compiler::getServiceReferenceGraph PHP Метод

getServiceReferenceGraph() публичный Метод

Returns the ServiceReferenceGraph.
public getServiceReferenceGraph ( ) : Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph
Результат Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph The ServiceReferenceGraph instance
    public function getServiceReferenceGraph()
    {
        return $this->serviceReferenceGraph;
    }

Usage Example

 protected function process(ContainerBuilder $container)
 {
     $pass = new RepeatedPass(array(new AnalyzeServiceReferencesPass()));
     $pass->setCompiler($compiler = new Compiler());
     $pass->process($container);
     return $compiler->getServiceReferenceGraph();
 }
All Usage Examples Of Symfony\Component\DependencyInjection\Compiler\Compiler::getServiceReferenceGraph