Answer the question
In order to leave comments, you need to log in
Is the Decorator pattern right for my task?
You need to create a link between Car and Wheel. Relayshen add to Car will not work!!
/**
* @property Car $car
* @property Wheel[] $wheels
*/
class Decorator
{
// геттеры + сеттеры
}
class Car extends ActiveRecord
{
public $id;
public $model;
}
class Wheel
{
public $color;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question