Move all files to drupal-nix-flake/

This commit is contained in:
Oliver Davies 2025-09-29 23:15:40 +01:00
parent 2f08b5a081
commit 04d7f09b61
14 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<?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.'),
];
}
}