A
A
atis //2017-01-03 17:50:38
Yii
atis //, 2017-01-03 17:50:38

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;
}

So far I'm leaning towards the Decorator pattern, but I'm also thinking about DTOs.
How right?

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question