pm-convert/src/Exporters/ConverterContract.php

12 lines
219 B
PHP

<?php
declare(strict_types=1);
namespace PmConverter\Exporters;
interface ConverterContract
{
public function convert(object $collection, string $outputPath): void;
public function getOutputPath(): string;
}