18 lines
283 B
PHP
18 lines
283 B
PHP
<?php
|
|
|
|
namespace Modules\Import\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class ImportServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
}
|
|
}
|