1 private function convertNullToZero( $sValue ) { 2 if( $sValue == '' ) { 3 return 1; 4 } 5 return $sValue; 6 }