mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-17 23:09:10 +08:00
Better handling of trying to configure already instantiated component
This commit is contained in:
@@ -546,11 +546,16 @@ abstract class Module extends Component
|
||||
public function setComponents($components)
|
||||
{
|
||||
foreach ($components as $id => $component) {
|
||||
if (isset($this->_components[$id]) && !($this->_components[$id] instanceof Object)) {
|
||||
if (isset($this->_components[$id]['class']) && !isset($component['class'])) {
|
||||
$component['class'] = $this->_components[$id]['class'];
|
||||
}
|
||||
$this->_components[$id] = $component;
|
||||
}
|
||||
else {
|
||||
throw new Exception('Cannot set component "'.$id.'" that is already instantiated.');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user