eZ\Publish\Core\REST\Server\Input\Parser\ContentCreate::__construct PHP Method

__construct() public method

Construct.
public __construct ( eZ\Publish\API\Repository\ContentService $contentService, eZ\Publish\API\Repository\ContentTypeService $contentTypeService, FieldTypeParser $fieldTypeParser, LocationCreate $locationCreateParser, ParserTools $parserTools )
$contentService eZ\Publish\API\Repository\ContentService
$contentTypeService eZ\Publish\API\Repository\ContentTypeService
$fieldTypeParser eZ\Publish\Core\REST\Common\Input\FieldTypeParser
$locationCreateParser LocationCreate
$parserTools eZ\Publish\Core\REST\Common\Input\ParserTools
    public function __construct(ContentService $contentService, ContentTypeService $contentTypeService, FieldTypeParser $fieldTypeParser, LocationCreate $locationCreateParser, ParserTools $parserTools)
    {
        $this->contentService = $contentService;
        $this->contentTypeService = $contentTypeService;
        $this->fieldTypeParser = $fieldTypeParser;
        $this->locationCreateParser = $locationCreateParser;
        $this->parserTools = $parserTools;
    }