2024-09-03 20:16:34 +03:00

13 lines
190 B
PHP

<?php
namespace ContingentParser\Logger;
abstract class Logger
{
protected string $_path;
public function __construct(string $path)
{
$this->_path = $path;
}
}