1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/phpactor/templates/laravel-provider/SourceCode.php.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 %}