mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
26 lines
389 B
Twig
26 lines
389 B
Twig
<?php
|
|
|
|
namespace {{ prototype.namespace }};
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
{% for class in prototype.classes %}
|
|
class {{ class.name }} extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
//
|
|
}
|
|
}
|
|
{% endfor %}
|