@ -227,6 +227,7 @@ switch ($this->phpType) {
$a = (string)$value;
break;
case 'integer':
case 'int':
$a = (integer)$value;
case 'boolean':
@ -234,12 +235,9 @@ switch ($this->phpType) {
default:
$a = null;
}
~~~
Do not omit `break`.
### Code documentation
- Refer ot [phpDoc](http://phpdoc.org/) for documentation syntax.