1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/phpactor/templates/livewire/SourceCode.php.twig

15 lines
213 B
Twig

<?php
namespace {{ prototype.namespace }};
use Livewire\Component;
{% for class in prototype.classes %}
class {{ class.name }} extends Component
{
public function mount() : void
{
}
}
{% endfor %}