Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-api/Api/DeleteAssetsByPathsInterface.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\MediaGalleryApi\Api;

/**
 * Delete media assets by exact or directory paths
 * @api
 * @since 101.0.0
 */
interface DeleteAssetsByPathsInterface
{
    /**
     * Delete media assets by paths. Removes all the assets which paths start with provided paths
     *
     * @param string[] $paths
     * @return void
     * @since 101.0.0
     */
    public function execute(array $paths): void;
}