Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function __construct(AppConfig $config, ILogger $logger) { |
||
20 | parent::__construct($config, $logger); |
||
21 | $this->socket = $this->appConfig->getAvSocket(); |
||
22 | if ($this->socket === '') { |
||
23 | throw new InitException( |
||
24 | 'Socket mode requires a path to the unix socket but it is empty.' |
||
25 | ); |
||
26 | } |
||
27 | } |
||
28 | |||
55 |