13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
namespace Modules\Routing\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class RoutingServiceProvider extends ServiceProvider
|
|
{
|
|
public function register(): void {}
|
|
|
|
public function boot(): void {}
|
|
}
|