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