drupal-nix-flake-example/web/modules/example/src/Controller/ExamplePageController.php

17 lines
309 B
PHP

<?php
namespace Drupal\example\Controller;
use Drupal\Core\StringTranslation\StringTranslationTrait;
final class ExamplePageController {
use StringTranslationTrait;
public function __invoke(): array {
return [
'#markup' => $this->t('This page is powered by Drupal and Nix.'),
];
}
}