Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-media-gallery-renditions/Model/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-media-gallery-renditions/Model/GetRenditionPath.php

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

namespace Magento\MediaGalleryRenditions\Model;

use Magento\MediaGalleryRenditionsApi\Api\GetRenditionPathInterface;

class GetRenditionPath implements GetRenditionPathInterface
{
    private const RENDITIONS_DIRECTORY_NAME = '.renditions';

    /**
     * Returns Rendition image path
     *
     * @param string $path
     * @return string
     */
    public function execute(string $path): string
    {
        return self::RENDITIONS_DIRECTORY_NAME . '/' . ltrim($path, '/');
    }
}