Your IP : 216.73.216.43


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/IsPathExcludedInterface.php

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

namespace Magento\MediaGalleryApi\Api;

/**
 * Check if the path is excluded for media gallery.
 *
 * Directory path may be excluded if it's reserved by the system.
 * @api
 */
interface IsPathExcludedInterface
{
    /**
     * Check if the path is excluded from displaying and processing in the media gallery
     *
     * @param string $path
     * @return bool
     */
    public function execute(string $path): bool;
}