Files
test_ea/laravel/app/Contracts/WbSyncFactoryInterface.php
2026-02-15 01:34:17 +07:00

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;
}