Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/02/2007, 13:44
zsamer
 
Fecha de Ingreso: noviembre-2003
Mensajes: 798
Antigüedad: 20 años, 5 meses
Puntos: 8
Re: Decorator Pattern in PHP5 [Solucionado]

Solucionado!!!

Si no me equivoco y haber si alguien me lo confirma, hay que remplazar lo siguiente:

Código PHP:
$stringUppercase = new String_Formatter_Uppercase($stringFormatter);
$stringReverse = new String_Formatter_Reverse($stringUppercase);
$stringEscape = new String_Formatter_Escape($stringReverse); 
por:

Código PHP:
$stringUppercase = new String_Formatter_Uppercase($stringFormatter);
$stringReverse = new String_Formatter_Reverse($stringFormatter);
$stringEscape = new String_Formatter_Escape($stringFormatter);