Files
postshop-backend/stubs/provider.stub
2026-02-03 15:31:29 +05:00

25 lines
324 B
Plaintext

<?php
namespace {{ namespace }};
use Illuminate\Support\ServiceProvider;
class {{ class }} extends ServiceProvider
{
/**
* Register services.
*/
public function register(): void
{
//
}
/**
* Bootstrap services.
*/
public function boot(): void
{
//
}
}