18 lines
259 B
PHP
18 lines
259 B
PHP
<?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;
|
|
}
|