eZ\Publish\Core\Repository\ContentService::newContentCreateStruct PHP Method

newContentCreateStruct() public method

Instantiates a new content create struct object.
public newContentCreateStruct ( eZ\Publish\API\Repository\Values\ContentType\ContentType $contentType, string $mainLanguageCode ) : eZ\Publish\API\Repository\Values\Content\ContentCreateStruct
$contentType eZ\Publish\API\Repository\Values\ContentType\ContentType
$mainLanguageCode string
return eZ\Publish\API\Repository\Values\Content\ContentCreateStruct
    public function newContentCreateStruct(ContentType $contentType, $mainLanguageCode)
    {
        return new ContentCreateStruct(array('contentType' => $contentType, 'mainLanguageCode' => $mainLanguageCode));
    }