Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
35 | protected function getProxyManagerConfiguration(string $proxyManagerCacheDir): Configuration |
||
36 | { |
||
37 | if (!is_dir($proxyManagerCacheDir)) { |
||
38 | throw new \InvalidArgumentException(sprintf('"%s" is not a dir', $proxyManagerCacheDir)); |
||
39 | } |
||
40 | |||
41 | $proxyConfiguration = new Configuration(); |
||
42 | $proxyConfiguration->setProxiesTargetDir($proxyManagerCacheDir); |
||
43 | |||
44 | return $proxyConfiguration; |
||
45 | } |
||
46 | } |
||
47 |