Added Proxy UML

This commit is contained in:
John Webb
2014-07-29 11:17:21 -05:00
parent d2dcb197cd
commit d0616c7937
4 changed files with 23 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -0,0 +1,18 @@
@startuml
class Record {
#$data : array|null
+__construct($data = null)
+__set($name : string, $value : mixed)
+__get($name : string)
}
class RecordProxy {
#$isDirty : bool
#$isInitialized : bool
+__construct(data : array)
+__set($name : string, $value : mixed)
}
Record <|.. RecordProxy
@enduml