Reverse order and multiple log files handler

This commit is contained in:
2023-02-15 17:45:23 -03:00
parent 110f37e4f4
commit c29eece81c
16 changed files with 494 additions and 101 deletions

View File

@ -0,0 +1,7 @@
<?php
namespace ProVM\Common\Define;
interface Log
{
}

View File

@ -0,0 +1,7 @@
<?php
namespace ProVM\Common\Define;
interface Parser
{
public function parse(string $content): Log;
}