Initial Commit
This commit is contained in:
commit
3c094c7ac2
12 changed files with 470 additions and 0 deletions
8
src/LogLib2/LogLib2/LogLib2.php
Normal file
8
src/LogLib2/LogLib2/LogLib2.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace LogLib2;
|
||||
|
||||
class LogLib2
|
||||
{
|
||||
|
||||
}
|
18
src/LogLib2/Program.php
Normal file
18
src/LogLib2/Program.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?php
|
||||
|
||||
namespace LogLib2;
|
||||
|
||||
class Program
|
||||
{
|
||||
/**
|
||||
* LogLib2 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.loglib2!" . PHP_EOL);
|
||||
return 0;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue