Horde_Kolab_Format_Decorator_Base::__construct PHP Method

__construct() public method

Constructor.
public __construct ( Horde_Kolab_Format $handler )
$handler Horde_Kolab_Format The handler to be decorated.
    public function __construct(Horde_Kolab_Format $handler)
    {
        $this->_handler = $handler;
    }

Usage Example

Example #1
0
 /**
  * Constructor.
  *
  * @param Horde_Kolab_Format  $handler The handler to be decorated.
  * @param Horde_Support_Timer $timer   The timer.
  * @param mixed               $logger  The optional logger. If set this
  *                                     needs to provide a debug() method.
  */
 public function __construct(Horde_Kolab_Format $handler, Horde_Support_Timer $timer, $logger = null)
 {
     parent::__construct($handler);
     $this->_timer = $timer;
     $this->_logger = $logger;
 }
All Usage Examples Of Horde_Kolab_Format_Decorator_Base::__construct
Horde_Kolab_Format_Decorator_Base