| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function register() |
||
| 11 | { |
||
| 12 | parent::register(); |
||
| 13 | |||
| 14 | $this->app->singleton(ProxyManager::class, function ($app) { |
||
| 15 | return new ProxyManager($app); |
||
| 16 | }); |
||
| 17 | |||
| 18 | $this->app->bind(Proxy::class, function ($app, $parameters) { |
||
| 19 | return new Proxy($parameters['target'], $parameters['events']); |
||
| 20 | }); |
||
| 28 |