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