mirror of
https://github.com/openvk/chandler.git
synced 2025-03-31 21:43:59 +03:00
16 lines
217 B
PHP
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;
|
|
}
|