Sulu\Bundle\DocumentManagerBundle\Bridge\DocumentInspector::__construct PHP Method

__construct() public method

public __construct ( Sulu\Component\DocumentManager\DocumentRegistry $documentRegistry, Sulu\Component\DocumentManager\PathSegmentRegistry $pathSegmentRegistry, Sulu\Component\DocumentManager\NamespaceRegistry $namespaceRegistry, Sulu\Component\DocumentManager\ProxyFactory $proxyFactory, Sulu\Component\DocumentManager\MetadataFactoryInterface $metadataFactory, Sulu\Component\Content\Metadata\Factory\StructureMetadataFactoryInterface $structureFactory, PropertyEncoder $encoder, Sulu\Component\Webspace\Manager\WebspaceManagerInterface $webspaceManager )
$documentRegistry Sulu\Component\DocumentManager\DocumentRegistry
$pathSegmentRegistry Sulu\Component\DocumentManager\PathSegmentRegistry
$namespaceRegistry Sulu\Component\DocumentManager\NamespaceRegistry
$proxyFactory Sulu\Component\DocumentManager\ProxyFactory
$metadataFactory Sulu\Component\DocumentManager\MetadataFactoryInterface
$structureFactory Sulu\Component\Content\Metadata\Factory\StructureMetadataFactoryInterface
$encoder PropertyEncoder
$webspaceManager Sulu\Component\Webspace\Manager\WebspaceManagerInterface
    public function __construct(DocumentRegistry $documentRegistry, PathSegmentRegistry $pathSegmentRegistry, NamespaceRegistry $namespaceRegistry, ProxyFactory $proxyFactory, MetadataFactoryInterface $metadataFactory, StructureMetadataFactoryInterface $structureFactory, PropertyEncoder $encoder, WebspaceManagerInterface $webspaceManager)
    {
        parent::__construct($documentRegistry, $pathSegmentRegistry, $proxyFactory);
        $this->metadataFactory = $metadataFactory;
        $this->structureFactory = $structureFactory;
        $this->namespaceRegistry = $namespaceRegistry;
        $this->encoder = $encoder;
        $this->webspaceManager = $webspaceManager;
    }