widgets = &$widgets; } public function addWidget($widget) { if ($widget) { if (!is_string($widget)) { throw new \Exception("Can not add non-string widget", 1); } $this->widgets[] = $widget; } } }