15 lines
292 B
PHP
15 lines
292 B
PHP
<?php
|
|
|
|
namespace External\ZNZBundle\Synchronizers;
|
|
|
|
interface SynchronizerInterface
|
|
{
|
|
public static function getType(): string;
|
|
|
|
public static function isLoggingEnabled(): bool;
|
|
|
|
public static function getHandledTables(): array;
|
|
|
|
public function process(array $data): void;
|
|
}
|