| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function boot() |
||
| 26 | { |
||
| 27 | \Route::middleware('api')->any(config('irfa.app_license_server.license_route'),'Irfa\AppLicenseServer\Controller\AppLicenseController@check')->name(config('irfa.app_license_server.route_name')); |
||
| 28 | $this->publishes([ |
||
| 29 | __DIR__.'/../config/irfa/' => config_path('irfa')],'app-license-server'); |
||
| 30 | $this->publishes([ |
||
| 31 | __DIR__.'/../migrations/' => database_path('migrations'), |
||
| 32 | ], 'app-license-server'); |
||
| 33 | |||
| 37 |