nix-config/modules2/phpactor/config/templates/drupal-unit-test/SourceCode.php.twig
Oliver Davies fa0bad904c
All checks were successful
/ check (push) Successful in 1m42s
Move phpactor configuration
2025-07-26 23:21:37 +01:00

13 lines
208 B
Twig

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