Example #1
0
 public function __construct(DB_Type_Abstract_Base $item = null, $both = false)
 {
     $this->_both = $both;
     parent::__construct($item);
 }
Example #2
0
 public function __construct(DB_Type_Abstract_Base $item = null, $min = null, $max = null)
 {
     parent::__construct($item);
     $this->_max = $max;
     $this->_min = $min;
 }
Example #3
0
 public function __construct(DB_Type_Pgsql_Row $item = null, $min = 'value_from', $max = 'value_to')
 {
     parent::__construct($item);
     $this->_keyTo = $max;
     $this->_keyFrom = $min;
 }