configure()} method of the class named in the * options. * * @package Cache * @version 1.4beta1 */ interface ezcCacheStackConfigurator { /** * Configures the given stack. * * This method configures the given $stack object. The object is usually * expected to be newly constructed after this method receives it. If given * in a class implemnting this interface is given in {@link * ezcCacheStackOptions}, this method will be called automatically from * {@link ezcCacheStack->__construct()}. * * This method is expected to use the {@link ezcCacheStack->pushStorage()} * method to configure storages in the stack. * * @param ezcCacheStack $stack * @return void */ public static function configure( ezcCacheStack $stack ); } ?>