Tagged Questions
4
votes
3answers
260 views
what does composition example vs aggregation
Composition and aggregation both are confusion to me. Does my code sample below indicate composition or aggregation?
class A {
public static function getData($id) {
//something
}
...