mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-26 06:19:20 +02:00
9 lines
178 B
Plaintext
9 lines
178 B
Plaintext
@startuml
|
|
|
|
abstract class Registry {
|
|
#static $storedValues : array;
|
|
+static function set($key : string, $value : mixed)
|
|
+static function get($key : string)
|
|
}
|
|
|
|
@enduml |