src/Formatter/ConverterInterface.php
<?php declare(strict_types=1);
/**
* Copyright © Thomas Klein, All rights reserved.
* See LICENSE bundled with this library for license details.
*/
namespace LogicTree\Formatter;
/**
* @api
*/
interface ConverterInterface
{
public function convert(mixed ...$expressions): string;
}