13 lines
184 B
PHP
13 lines
184 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts;
|
|
|
|
use App\Enums\WbEndpoint;
|
|
|
|
interface WbSyncFactoryInterface
|
|
{
|
|
public function make(WbEndpoint $type): WbSyncInterface;
|
|
}
|