| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function __construct(AppConfig $config, ILogger $logger) { |
||
| 28 | parent::__construct($config, $logger); |
||
| 29 | $this->socket = $this->appConfig->getAvSocket(); |
||
| 30 | if ($this->socket === '') { |
||
| 31 | throw new InitException( |
||
| 32 | 'Socket mode requires a path to the unix socket but it is empty.' |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 66 |