eZ\Publish\Core\REST\Client\Values\ContentType\ContentType::__construct PHP Method

__construct() public method

public __construct ( ContentTypeService $contentTypeService, array $data = [] )
$contentTypeService eZ\Publish\Core\REST\Client\ContentTypeService
$data array
    public function __construct(ContentTypeService $contentTypeService, array $data = array())
    {
        $this->contentTypeService = $contentTypeService;
        foreach ($data as $propertyName => $propertyValue) {
            $this->{$propertyName} = $propertyValue;
        }
    }