| Current Path : /home/rtorresani/www/app/code/Amasty/Base/Model/SysInfo/Formatter/ |
| 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;
}