| Conditions | 2 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function __construct($config) |
||
| 24 | { |
||
| 25 | $options = Solr::solr_options(); |
||
| 26 | |||
| 27 | $this->url = implode('', [ |
||
| 28 | 'http://', |
||
| 29 | isset($config['auth']) ? $config['auth'] . '@' : '', |
||
| 30 | $options['host'] . ':' . $options['port'], |
||
| 31 | $config['path'] |
||
| 32 | ]); |
||
| 33 | $this->remote = $config['remotepath']; |
||
| 34 | } |
||
| 75 |