Updated Project Source code (I don't remember what i did.)

This commit is contained in:
netkas 2024-09-24 14:20:49 -04:00
parent fc2e4d5a73
commit 4879fdf36d
10 changed files with 289 additions and 10 deletions

18
src/Socialbox/Program.php Normal file
View file

@ -0,0 +1,18 @@
<?php
namespace Socialbox;
class Program
{
/**
* Socialbox main entry point
*
* @param string[] $args Command-line arguments
* @return int Exit code
*/
public static function main(array $args): int
{
print("Hello World from net.nosial.socialbox!" . PHP_EOL);
return 0;
}
}