Initial commit

This commit is contained in:
modules-communs-php
2024-01-11 10:04:42 +00:00
commit 93b0fa25b2
10 changed files with 1882 additions and 0 deletions

11
src/ModelLibPhp.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace Nwb\ModelLibPhp;
class ModelLibPhp
{
public function hello(): string
{
return 'Hello World, Composer!';
}
}