/** * 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; } }
/** * 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; }
/** * Constructor. * * @since 0.7.2 */ public function __construct($metaDataSeparator = false) { parent::__construct(); $this->metaDataSeparator = $metaDataSeparator; }
/** * Constructor. * * @param string $dimension * * @since 0.7 */ public function __construct($dimension) { parent::__construct(); $this->dimension = $dimension; }
/** * Constructor. * * @since 0.7.5 */ public function __construct($mappingServiceParam = false) { parent::__construct(); $this->mappingServiceParam = $mappingServiceParam; }
/** * 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; }