mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
13 lines
236 B
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 %}
|