design-patterns/src/Contracts/Loggable.php
2025-07-03 12:02:19 +03:00

17 lines
224 B
PHP

<?php
/**
* @package: patterns
* @author: Yevhen Odynets
* @date: 2025-07-03
* @time: 07:36
*/
declare(strict_types = 1);
namespace Contracts;
interface Loggable
{
public static function getInstance(): static;
}