Add Litlab

This commit is contained in:
2025-07-04 13:35:51 +03:00
parent 1cf6e3d7d2
commit dabbf541dc
17 changed files with 159 additions and 17 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 RefactoringGuru\Builder\RealWorld\singleton;
interface Loggable
{
public static function getInstance(): static;
}