[BIGUPDATE: api.core.Checker] remove flexibility
This commit is contained in:
parent
a9fec0373e
commit
8abf8cca2e
|
@ -124,7 +124,8 @@
|
|||
|
||||
// Boolean
|
||||
case 'boolean':
|
||||
return $checker && ( is_bool($value) || $value === 'false' || $value === 'true' );
|
||||
case 'bool':
|
||||
return $checker && is_bool($value);
|
||||
break;
|
||||
|
||||
// Objet non vide
|
||||
|
@ -138,7 +139,7 @@
|
|||
break;
|
||||
|
||||
case 'numeric':
|
||||
return $checker && (is_numeric($value) || $value == null || $value == 'null');
|
||||
return $checker && (is_numeric($value) || $value == null);
|
||||
break;
|
||||
|
||||
case "float":
|
||||
|
|
Loading…
Reference in New Issue