Files
kupshop/bundles/External/MSSQLBundle/Synchronizers/SynchronizerInterface.php
2025-08-02 16:30:27 +02:00

13 lines
246 B
PHP

<?php
namespace External\MSSQLBundle\Synchronizers;
interface SynchronizerInterface
{
public static function getType(): ?string;
public static function getPriority(): int;
public function sync(bool $transactional = true): void;
}