It would be good if you could use php5's `clone` keyword, for example if you needed 2 similar queries.
All you would need to do to provide this functionality is adding the following method to FindParams:
Code: Select all
function __clone() {
$this->criteriaObject = clone $this->criteriaObject;
}