Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/itxq/singleton_pattern


https://github.com/itxq/singleton_pattern

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# 单例trait

```php

namespace test;

use itxq\kelove\traits\SingletonPattern;

class Test
{
use SingletonPattern;

public function index()
{
return 123;
}

}
```