/**
  * Constructor.
  */
 function __construct()
 {
     parent::__construct(array());
 }
Example #2
0
 /**
  * Constructor.
  *
  * Creates a filter which has knowledge about the
  * holidays that driver-calculations are limited to.
  * 
  * @param   array   numerical array that contains internal names of holidays
  */
 function __construct($holidays)
 {
     parent::__construct($holidays);
 }