conditions = $conditions; } /** * Composite method, which apply different product conditions * you can register new condition in module/di.xml * * @param AbstractDb $collection * @return void */ public function apply(AbstractDb $collection) { foreach ($this->conditions as $condition) { $condition->apply($collection); } } }