$assigned = $instance
Above will assign $instance to $assigned, the most basic assign.
$assigned = clone $instance
This is for object clone. Assign a copy of object $instance to $assigned.
Without clone, $assigned and $instance has same object id, which means they are pointing to same object.