itxq/singleton_pattern

单例trait

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/itxq/singleton_pattern

v1.0.0 2019-05-03 08:42 UTC

This package is auto-updated.

Last update: 2025-09-29 02:14:55 UTC


README

namespace test;

use itxq\kelove\traits\SingletonPattern;

class Test
{
    use SingletonPattern;
    
    public function index()
    {
        return 123;
    }
    
}