jrosset / singleton
PHP Trait to implements the singleton design pattern
2.0.0
2024-12-16 09:55 UTC
Requires
- php: ^8.1
README
PHP Trait to implements the singleton design pattern
Installation
composer require jrosset/singleton
Usage
<?php
use jrosset\Singleton\ISingleton;
use jrosset\Singleton\TSingleton;
class MyClass implements ISingleton {
use TSingleton;
protected function __construct() {}
}