Небольшие изменения

This commit is contained in:
RedHood
2020-09-03 16:18:02 +10:00
parent 3d74862474
commit 9d38d69445
38 changed files with 56 additions and 1607 deletions

View 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;
}