lithium\data\Collection::assignTo()

public method

Configures protected properties of a Collection so that it is parented to $parent.

Parameters

  • object $parent
  • array $config

Returns

void

Source

	public function assignTo($parent, array $config = []) {
		foreach ($config as $key => $val) {
			$this->{'_' . $key} = $val;
		}
		$this->_parent =& $parent;
	}