Beispiel #1
0
 /**
  * Quote a raw string.
  *
  * @param string $value     Raw string
  * @return string           Quoted string
  */
 protected function _quote($value)
 {
     if (is_float($value)) {
         $value = $this->_convertFloat($value);
         return $value;
     }
     return parent::_quote($value);
 }