| 1 | <?php |
||
| 2 | |||
| 3 | namespace Sarahman\HttpRequestApiLog; |
||
| 4 | |||
| 5 | use Illuminate\Support\ServiceProvider; |
||
| 6 | |||
| 7 | class ServiceProviderForLaravel4 extends ServiceProvider |
||
| 8 | { |
||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | $this->package('sarahman/laravel-http-request-api-log', null, __DIR__); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 12 | } |
||
| 13 | |||
| 14 | public function register() |
||
| 15 | { |
||
| 16 | // We have nothing to register here |
||
| 17 | } |
||
| 18 | } |
||
| 19 |