DbObject: just a newline

This commit is contained in:
Thomas Gelf 2016-03-21 19:10:43 +01:00
parent 497c7771e0
commit 2939f82758

View File

@ -282,6 +282,7 @@ abstract class DbObject
if ($value === '') {
$value = null;
}
$func = 'validate' . ucfirst($key);
if (method_exists($this, $func) && $this->$func($value) !== true) {
throw new IE('Got invalid value "%s" for "%s"', $value, $key);