docker-pipeline-test/src/HelloApplication.php
Christopher Vagnetoft 9b78e90b57
Some checks failed
continuous-integration/woodpecker the build failed
Initial commit
2021-12-03 16:46:00 +01:00

18 lines
204 B
PHP

<?php
namespace Hello;
class HelloApplication
{
public function run()
{
echo $this->getMessage();
}
public function getMessage()
{
return "Hello World!\n";
}
}