dotfiles/phpactor/templates/drupal-unit-test/SourceCode.php.twig

14 lines
208 B
Twig
Raw Normal View History

<?php
declare(strict_types=1);
namespace {{ prototype.namespace }};
use Drupal\Tests\UnitTestCase;
{% for class in prototype.classes %}
final class {{ class.name }} extends UnitTestCase {
}
{% endfor %}