2021-06-24 11:37:00 +02:00

11 lines
160 B
PHP

<?php
declare(strict_types=1);
namespace Chill\PersonBundle\Service\Import;
interface ChillImporter
{
public function import(iterable $dataset): bool;
}