| 1 | <?php |
||
| 15 | trait LazyInitStaticTrait |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var mixed[] |
||
| 19 | */ |
||
| 20 | protected static $lazyInitStaticData = [ ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Closure $container |
||
| 24 | * @param string|array|null $dependency |
||
| 25 | * @param mixed[] $params |
||
| 26 | * |
||
| 27 | * @return mixed |
||
| 28 | * |
||
| 29 | * @throws ErrorException |
||
| 30 | */ |
||
| 31 | 11 | protected static function lazyInitStatic ( Closure $container, $dependency = null, array $params = [ ] ) |
|
| 47 | } |
||
| 48 |