twig_tweak-8.x-2.8/tests/twig_tweak_test/src/Controller/TwigTweakTestController.php
tests/twig_tweak_test/src/Controller/TwigTweakTestController.php
<?php
declare(strict_types=1);
namespace Drupal\twig_tweak_test\Controller;
/**
* Returns responses for Twig Tweak Test routes.
*/
final class TwigTweakTestController {
/**
* Builds the response.
*/
public function build(): array {
return ['#theme' => 'twig_tweak_test'];
}
}
