| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Support\Traits;
- use Hyperf\Context\Context;
- trait StaticInstance
- {
- public static function instance(array $params = [], bool $refresh = false, string $suffix = ''): static
- {
- $key = get_called_class() . $suffix;
- $instance = null;
- if (Context::has($key)) {
- $instance = Context::get($key);
- }
- if ($refresh || ! $instance instanceof static) {
- $instance = new static(...$params);
- Context::set($key, $instance);
- }
- return $instance;
- }
- }
|