Небольшие изменения
This commit is contained in:
26
system/Loggers/LoggerAbstract.php
Normal file
26
system/Loggers/LoggerAbstract.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace VK\Loggers;
|
||||
|
||||
/**
|
||||
* Абстрактный класс журналиста
|
||||
*
|
||||
*
|
||||
* @package Log
|
||||
* @author Arsen Mirzaev
|
||||
*/
|
||||
abstract class LoggerAbstract
|
||||
{
|
||||
/**
|
||||
* Экземпляр класса журналиста
|
||||
*
|
||||
* @var LoggerAbstract
|
||||
*/
|
||||
public static $logger;
|
||||
|
||||
abstract static public function post($file = null): ?LoggerAbstract;
|
||||
abstract static public function get(): ?LoggerAbstract;
|
||||
abstract static public function delete(): ?LoggerAbstract;
|
||||
}
|
Reference in New Issue
Block a user