Sulu\Bundle\ContentBundle\DependencyInjection\Compiler\ContentExportCompilerPass::process PHP Метод

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

public process ( ContainerBuilder $container )
$container Symfony\Component\DependencyInjection\ContainerBuilder
    public function process(ContainerBuilder $container)
    {
        if (!$container->hasDefinition(self::CONTENT_EXPORT_SERVICE_ID)) {
            return;
        }
        $taggedServices = $container->findTaggedServiceIds(self::STRUCTURE_EXTENSION_TAG);
        foreach ($taggedServices as $id => $tagAttributes) {
            $this->processTagAttributes($container, $id, $tagAttributes);
        }
    }