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