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

12 lines
173 B
Twig

<?php
namespace {{ prototype.namespace }};
use PHPUnit\Framework\TestCase;
{% for class in prototype.classes %}
class {{ class.name }} extends TestCase
{
}
{% endfor %}