13 lines
232 B
PHP
13 lines
232 B
PHP
<?php
|
|
|
|
namespace External\ZNZBundle\Synchronizers;
|
|
|
|
interface SynchronizerOutInterface
|
|
{
|
|
public static function getPriority(): int;
|
|
|
|
public function useTestConnection(): bool;
|
|
|
|
public function processToHelios(): void;
|
|
}
|