jrosset/singleton

实现单例设计模式的PHP特性

1.5.0 2023-06-09 12:20 UTC

This package is auto-updated.

Last update: 2024-09-09 14:57:26 UTC


README

实现单例设计模式的PHP特性

安装

composer require jrosset/singleton

使用

<?php

use jrosset\Singleton\ISingleton;
use jrosset\Singleton\TSingleton;

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