| 1 | <?php |
||
| 17 | class FlowRegistry |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected static $registry = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $key |
||
| 26 | * @param mixed $value |
||
| 27 | */ |
||
| 28 | public static function set($key, $value) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param null|string $key |
||
| 38 | * |
||
| 39 | * @return array|mixed|null |
||
| 40 | */ |
||
| 41 | public static function &getRef($key = null) |
||
| 53 | } |
||
| 54 |