mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-17 15:54:23 +00:00
11 lines
160 B
PHP
11 lines
160 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\PersonBundle\Service\Import;
|
|
|
|
interface ChillImporter
|
|
{
|
|
public function import(iterable $dataset): bool;
|
|
}
|