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