You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Julien Rosset 70a0f14c26 Change documentation to English 4 years ago
src/Singleton Change documentation to English 4 years ago
tests Ajout du trait + un test 4 years ago
.gitignore Initial commit 4 years ago
LICENSE.md Initial commit 4 years ago
README.md Correction instructions installation 4 years ago
composer.json Initial commit 4 years ago
composer.lock Initial commit 4 years ago

README.md

PhpSingleton

PHP Trait to implements the singleton design pattern

Installation

composer require jrosset/singleton

Usage

<?php

use jrosset\Singleton\TSingleton;

class MyClass {
    use TSingleton;
   
    protected function __construct() {}
}