Add project files

This commit is contained in:
Frank Woeckener
2025-03-18 10:42:10 +01:00
parent e429c37f62
commit 3011456ddc
28 changed files with 757 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App;
class HelloWorld
{
public function getMessage(): string
{
return 'Hallo Welt! Die PHP-Anwendung läuft in Docker.';
}
}