eZ\Publish\Core\Search\Elasticsearch\Content\Mapper\StandardMapper::__construct PHP Method

__construct() public method

public __construct ( FieldRegistry $fieldRegistry, FieldNameGenerator $fieldNameGenerator, eZ\Publish\SPI\Persistence\Content\Handler $contentHandler, eZ\Publish\SPI\Persistence\Content\Location\Handler $locationHandler, eZ\Publish\SPI\Persistence\Content\Type\Handler $contentTypeHandler, eZ\Publish\SPI\Persistence\Content\ObjectState\Handler $objectStateHandler, eZ\Publish\SPI\Persistence\Content\Section\Handler $sectionHandler )
$fieldRegistry eZ\Publish\Core\Search\Common\FieldRegistry
$fieldNameGenerator eZ\Publish\Core\Search\Common\FieldNameGenerator
$contentHandler eZ\Publish\SPI\Persistence\Content\Handler
$locationHandler eZ\Publish\SPI\Persistence\Content\Location\Handler
$contentTypeHandler eZ\Publish\SPI\Persistence\Content\Type\Handler
$objectStateHandler eZ\Publish\SPI\Persistence\Content\ObjectState\Handler
$sectionHandler eZ\Publish\SPI\Persistence\Content\Section\Handler
    public function __construct(FieldRegistry $fieldRegistry, FieldNameGenerator $fieldNameGenerator, ContentHandler $contentHandler, LocationHandler $locationHandler, ContentTypeHandler $contentTypeHandler, ObjectStateHandler $objectStateHandler, SectionHandler $sectionHandler)
    {
        $this->fieldRegistry = $fieldRegistry;
        $this->fieldNameGenerator = $fieldNameGenerator;
        $this->contentHandler = $contentHandler;
        $this->locationHandler = $locationHandler;
        $this->contentTypeHandler = $contentTypeHandler;
        $this->objectStateHandler = $objectStateHandler;
        $this->sectionHandler = $sectionHandler;
    }