| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function register(Application $app) |
||
| 17 | { |
||
| 18 | $paramKey = sprintf('%s.config', $this->prefix); |
||
| 19 | |||
| 20 | if (!isset($app[$paramKey])) { |
||
| 21 | $app[$paramKey] = []; |
||
| 22 | } |
||
| 23 | |||
| 24 | $app[$this->prefix] = $app->share( |
||
| 25 | function () use ($app) { |
||
| 26 | return new Client($app['solarium.config']); |
||
| 27 | } |
||
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 35 |