Move all files to code/

This commit is contained in:
Oliver Davies 2025-10-02 08:13:02 +01:00
parent 0a1da40788
commit 8447b33ec8
27 changed files with 0 additions and 0 deletions

View file

@ -1,18 +0,0 @@
<?php
namespace Drupal\my_module\Controller;
use Drupal\Core\StringTranslation\StringTranslationTrait;
class BlogPageController {
use StringTranslationTrait;
public function __invoke(): array {
return [
'#markup' => $this->t('Welcome to my blog!'),
];
}
}