| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class CachingClientFactory |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var CacheProviderInterface |
||
| 16 | */ |
||
| 17 | private $cacheProvider; |
||
| 18 | |||
| 19 | public function __construct(CacheProviderInterface $cacheProvider) |
||
| 20 | { |
||
| 21 | $this->cacheProvider = $cacheProvider; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function createClient(): Client |
||
| 39 | } |
||
| 40 | } |
||
| 41 |