Extends
lithium\util\Collection
Configures protected properties of a `Collection` so that it is parented to `$parent`.
Parameters
- object $parent
- array $config
Returns
voidSource
public function assignTo($parent, array $config = array()) {
foreach ($config as $key => $val) {
$this->{'_' . $key} = $val;
}
$this->_parent =& $parent;
}