/** * Constructor */ public function __construct($length = 10, $scale = 2, $options = null) { parent::__construct($options); $this->_length = intval($length); $this->_scale = intval($scale); }
/** * Constructor */ public function __construct($length = 255, $options = null) { parent::__construct($options); $this->_length = intval($length); }
/** * Constructor */ public function __construct($width = null, $options = null) { parent::__construct($options); $this->width = intval($width); }