17 lines
293 B
PHP
17 lines
293 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace External\FlexiBeeBundle\Synchronizers;
|
|
|
|
interface SynchronizerInterface
|
|
{
|
|
public static function getType(): string;
|
|
|
|
public function sync(): void;
|
|
|
|
public function syncSingleItem(int $id): void;
|
|
|
|
public function setMode(int $mode);
|
|
}
|