Inheritance: implements Pheasant\Type
Example #1
0
 /**
  * Constructor
  */
 public function __construct($length = 10, $scale = 2, $options = null)
 {
     parent::__construct($options);
     $this->_length = intval($length);
     $this->_scale = intval($scale);
 }
Example #2
0
 /**
  * Constructor
  */
 public function __construct($length = 255, $options = null)
 {
     parent::__construct($options);
     $this->_length = intval($length);
 }
Example #3
0
 /**
  * Constructor
  */
 public function __construct($width = null, $options = null)
 {
     parent::__construct($options);
     $this->width = intval($width);
 }