chandler/src/Interfaces/Singleton.php
2022-01-01 18:54:05 +01:00

16 lines
217 B
PHP

<?php
declare(strict_types = 1);
namespace Chandler\Interfaces;
/**
* @package Chandler\Interfaces
*/
interface Singleton
{
/**
* @return static
*/
public static function getInstance(): self;
}