1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00
dotfiles/phpactor/templates/laravel-phpunit-test/SourceCode.php.twig

13 lines
236 B
Twig

<?php
namespace {{ prototype.namespace }};
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
{% for class in prototype.classes %}
class {{ class.name }} extends TestCase
{
use RefreshDatabase;
}
{% endfor %}