Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 2.0932 |
Changes | 0 |
1 | <?php |
||
39 | 1 | public function __construct(AppConfig $config, ILogger $logger) { |
|
40 | 1 | parent::__construct($config, $logger); |
|
41 | 1 | $this->socket = $this->appConfig->getAvSocket(); |
|
42 | 1 | if ($this->socket === '') { |
|
43 | throw new InitException( |
||
44 | 'Socket mode requires a path to the unix socket but it is empty.' |
||
45 | ); |
||
46 | } |
||
47 | 1 | } |
|
48 | |||
78 |