| 1 | <?php |
||
| 12 | class CacheDecoratorFactory implements WebServiceFactoryInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var WebServiceFactoryInterface |
||
| 16 | */ |
||
| 17 | protected $webServiceFactory; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var CacheInterface |
||
| 21 | */ |
||
| 22 | protected $cache; |
||
| 23 | |||
| 24 | public function __construct(WebServiceFactoryInterface $webServiceFactory, CacheInterface $cache) |
||
| 29 | |||
| 30 | public function createWebService($url, array $options) |
||
| 37 | } |
||
| 38 |