Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/app/code/Amasty/Base/Model/SysInfo/Formatter/
Upload File :
Current File : //home/rtorresani/www/app/code/Amasty/Base/Model/SysInfo/Formatter/FormatterInterface.php

<?php

declare(strict_types=1);

/**
 * @author Amasty Team
 * @copyright Copyright (c) Amasty (https://www.amasty.com)
 * @package Magento 2 Base Package
 */

namespace Amasty\Base\Model\SysInfo\Formatter;

interface FormatterInterface
{
    public function getContent(): string;

    public function getExtension(): string;
}