Initial commit
continuous-integration/woodpecker the build failed

This commit is contained in:
2021-12-03 16:46:00 +01:00
parent 9e12f48274
commit 9b78e90b57
10 changed files with 115 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Hello;
class HelloApplication
{
public function run()
{
echo $this->getMessage();
}
public function getMessage()
{
return "Hello World!\n";
}
}