Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-media-content-api/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-media-content-api/Model/GetEntityContentsInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\MediaContentApi\Model;

use Magento\MediaContentApi\Api\Data\ContentIdentityInterface;

/**
 * Get Entity Contents.
 * @api
 * @since 100.4.0
 */
interface GetEntityContentsInterface
{
    /**
     * Get concatenated content by the content identity
     *
     * @param ContentIdentityInterface $contentIdentity
     * @return string[]
     * @since 100.4.0
     */
    public function execute(ContentIdentityInterface $contentIdentity): array;
}