mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-15 13:32:43 +01:00
17 lines
293 B
PHP
17 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Import\Importers;
|
|
|
|
use App\Models\Organization;
|
|
|
|
interface ImporterContract
|
|
{
|
|
public function init(Organization $organization): void;
|
|
|
|
public function importData(string $data): void;
|
|
|
|
public function getReport(): ReportDto;
|
|
}
|