Singleton added

This commit is contained in:
2025-07-03 12:02:19 +03:00
commit 91f8ded888
31 changed files with 5025 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?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;
}