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