1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-17 11:30: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,12 @@
<?php
namespace {{ prototype.namespace }};
use Illuminate\Database\Eloquent\Model;
{% for class in prototype.classes %}
class {{ class.name }} extends Model
{
}
{% endfor %}