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: 16 KiB

After

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@@ -4,7 +4,7 @@ interface RendererInterface {
}
abstract class Decorator {
# protected $wrapped : RendererInterface
#$wrapped : RendererInterface
+__construct(RendererInterface $wrappable)
}
@@ -17,7 +17,7 @@ class RenderInXml {
}
class Webservice {
protected $data
#$data : mixed
+__construct($data)
+renderData()
}