| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | public function boot() |
||
| 24 | { |
||
| 25 | $this->publishes( |
||
| 26 | [ |
||
| 27 | __DIR__ . '/../config/apie-domain-plugin.php' => $this->app->get('path.config') . DIRECTORY_SEPARATOR . 'apie-domain-plugin.php', |
||
| 28 | ] |
||
| 29 | ); |
||
| 30 | if ($this->app->make('config')->get('apie-domain-plugin.mock', false)) { |
||
| 31 | $this->app->bind(HttpClient::class, MockHttpClient::class); |
||
| 32 | } |
||
| 51 |