i know that you can create your own design patterns and save them for later use.
but i wonder if there are free templates you can download and use, eg. factory, singleton and so on.
then you dont have to recreate/copy-paste and you will have accurate patterns.
...
I have Netbeans installed with Visual Paradigm plugin.
I have converted my php code into UML diagrams (modeling -> instant reverse). I can see relations (drawn lines) between superclass and subclasses. However, i cannot see relations between objects inside objects (composition/aggregation/association)?
The code looks like:
class Threa...
i have tested several UML applications for whether they could show composition relationships in the UML diagrams generated form the PHP source code or not, and the result is they can't.
i know that this is a typical problem for PHP cause we don't declare a data type when we code, so it's difficult for the UML applications to know if an ...