ПОЛНЫЙ РЕФАКТОРИНГ
This commit is contained in:
12
ContingentParser/Logger/Logger.php
Normal file
12
ContingentParser/Logger/Logger.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
namespace ContingentParser\Logger;
|
||||
|
||||
abstract class Logger
|
||||
{
|
||||
protected string $_path;
|
||||
public function __construct(string $path)
|
||||
{
|
||||
$this->_path = $path;
|
||||
}
|
||||
abstract public function log(string $message) : void;
|
||||
}
|
Reference in New Issue
Block a user