16 lines
291 B
PHP
16 lines
291 B
PHP
<?php
|
|
|
|
namespace External\PompoBundle\DRS\Synchronizer;
|
|
|
|
interface SynchronizerInterface
|
|
{
|
|
public const MODE_NORMAL = 0;
|
|
public const MODE_FULL = 1;
|
|
|
|
public static function getType(): string;
|
|
|
|
public function setMode(int $mode): void;
|
|
|
|
public function process(): void;
|
|
}
|