You are here

TwigTweakTestController.php in Twig Tweak 3.1.x

Same filename and directory in other branches
  1. 3.x tests/twig_tweak_test/src/Controller/TwigTweakTestController.php

File

tests/twig_tweak_test/src/Controller/TwigTweakTestController.php
View source
<?php

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',
    ];
  }

}

Classes

Namesort descending Description
TwigTweakTestController Returns responses for Twig Tweak Test routes.