Exemplo n.º 1
0
 /**
  * Constructor.
  * 
  * @since 0.4.2
  * 
  * You can provide an array with function names or pass each function name as a separate argument.
  */
 public function __construct()
 {
     parent::__construct();
     $args = func_get_args();
     if (count($args) > 0) {
         $this->functions = is_array($args[0]) ? $args[0] : $args;
     }
 }
Exemplo n.º 2
0
 /**
  * Constructor.
  * 
  * @since 1.6.2
  */
 public function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructor
  *
  * @param string $itemSep separator between prameters.
  * @param string $keyValueSep separator between parameter name and associated value.  
  *
  * @since 3.0
  */
 public function __construct($itemSep = "\n", $keyValueSep = '=')
 {
     parent::__construct();
     $this->itemSep = $itemSep;
     $this->keyValueSep = $keyValueSep;
 }
Exemplo n.º 4
0
 /**
  * Constructor.
  * 
  * @since 0.7.2
  */
 public function __construct($metaDataSeparator = false)
 {
     parent::__construct();
     $this->metaDataSeparator = $metaDataSeparator;
 }
Exemplo n.º 5
0
 /**
  * Constructor.
  *
  * @param string $dimension
  *
  * @since 0.7
  */
 public function __construct($dimension)
 {
     parent::__construct();
     $this->dimension = $dimension;
 }
Exemplo n.º 6
0
 /**
  * Constructor.
  * 
  * @since 0.7.5
  */
 public function __construct($mappingServiceParam = false)
 {
     parent::__construct();
     $this->mappingServiceParam = $mappingServiceParam;
 }
Exemplo n.º 7
0
 /**
  * Constructor.
  * 
  * @since 0.7
  */
 public function __construct($feature)
 {
     parent::__construct();
     $this->feature = $feature;
 }
 /**
  * Constructor
  *
  * @param Parameter &$param parameter to switch value with if lesser than this one.
  *
  * @since 3.0
  */
 public function __construct(Parameter &$param)
 {
     parent::__construct();
     $this->greaterParam = $param;
 }