mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 08:12:17 +01:00
21 lines
398 B
PHP
21 lines
398 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, string $timezone): void;
|
|
|
|
public function getReport(): ReportDto;
|
|
|
|
public function getName(): string;
|
|
|
|
public function getDescription(): string;
|
|
}
|