Example #1
0
 /**
  * @param   string  $sqlType
  * @return  int
  */
 protected function _extractScale($sqlType)
 {
     if (preg_match('/^money/', $sqlType)) {
         return 2;
     }
     return parent::_extractScale($sqlType);
 }