jrosset/singleton

PHP Trait to implements the singleton design pattern

2.0.0 2024-12-16 09:55 UTC

This package is auto-updated.

Last update: 2025-03-16 10:33:48 UTC


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() {}
}