Changeset 962

Show
Ignore:
Timestamp:
10/19/07 13:59:33 (10 months ago)
Author:
mikey
Message:

allow destructor in child classes via template method

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/session/stubAbstractSession.php

    r914 r962  
    9595            $this->managePutValue($key, $value); 
    9696        } 
     97         
     98        $this->doDescruct(); 
     99    } 
     100 
     101    /** 
     102     * template method for child classes to do specific descruction 
     103     */ 
     104    protected function doDescruct() 
     105    { 
     106        // intentionally empty 
    97107    } 
    98108