1 | <?php |
||
11 | class WebServiceFactory implements WebServiceFactoryInterface |
||
12 | { |
||
13 | |||
14 | /** @var string Třída webové služby */ |
||
15 | protected $class; |
||
16 | |||
17 | |||
18 | 2 | public function __construct(string $className = WebService::class) |
|
26 | |||
27 | /** |
||
28 | * @inheritdoc |
||
29 | */ |
||
30 | 1 | public function createWebService(string $url, array $options): WebServiceInterface |
|
34 | } |
||
35 |