Added DependencyInjection UML

This commit is contained in:
John Webb
2014-07-29 10:58:40 -05:00
parent 3a7e38f91d
commit aef2f34993
16 changed files with 59 additions and 27 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@@ -1,20 +1,20 @@
@startuml
class Form {
protected elements
+render($indent = 0)
#elements : array|FormElement[]
+render($indent = 0 : int)
+addElement(FormElement $element)
}
abstract class FormElement {
+render($indent = 0)
+render($indent = 0 : int)
}
class InputElement {
+render($indent = 0)
+render($indent = 0 : int)
}
class TextElement {
+render($indent = 0)
+render($indent = 0 : int)
}
FormElement <|.. TextElement