...and then it closes.
<?php
  
function end_element($parser$tag) {
    
// Each product ends with a closing Details tag
    
if ('Details' == $tag) {
      
$this->item->display();
      unset(
$this->item); 
    }
  }
?>