Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Image/Adapter/
Upload File :
Current File : /home/dev2.destoffenstraat.com/vendor-1/magento/framework/Image/Adapter/UploadConfigInterface.php

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

namespace Magento\Framework\Image\Adapter;

/**
 * Interface UploadConfigInterface
 *
 * @deprecated moved to proper namespace and extended
 * @see \Magento\Backend\Model\Image\UploadResizeConfigInterface;
 */
interface UploadConfigInterface
{
    /**
     * Get maximum image width.
     *
     * @return int
     */
    public function getMaxWidth(): int;

    /**
     * Get maximum image height.
     *
     * @return int
     */
    public function getMaxHeight(): int;
}