Updated project.json
Added Console.php Added Utilities.php Added Validate.php Added \LogLib\Objects > Backtrace Added \LogLib\Objects > Event Added \LogLib\Objects > Options Added \LogLib\Interfaces > HandlerInterface Added \LogLib\Abstracts > LevelType.php Added \LogLib\Abstracts > ConsoleColors.php Added \LogLib\Abstracts > CallType Added project.json (NCC)
This commit is contained in:
parent
c77fb2da6b
commit
ad7dba97d2
11 changed files with 986 additions and 0 deletions
10
src/LogLib/Interfaces/HandlerInterface.php
Normal file
10
src/LogLib/Interfaces/HandlerInterface.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace LogLib\Interfaces;
|
||||
|
||||
use LogLib\Objects\Event;
|
||||
|
||||
interface HandlerInterface
|
||||
{
|
||||
public function handle(Event $event): void;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue