1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-17 19:40:02 +02:00

phpactor: adding more templates

This commit is contained in:
Henrik Hautakoski 2025-03-23 16:34:27 +01:00
parent 70ce2131d5
commit 7578bf4b26
3 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?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 %}