hail/singleton

v2.0.0 2021-08-06 08:54 UTC

This package is auto-updated.

Last update: 2024-09-06 16:00:34 UTC


README

PHP单例模式

示例

class Example
{
    use Hail\Singleton\SingletonTrait;
    
    private $var;
    
    protected function init(): void
    {
        $this->var = 0;
    }
}

$example = Example::getInstance();