@ -225,21 +225,19 @@ Use the following formatting for switch:
switch ($this->phpType) {
case 'string':
$a = (string)$value;
break;
case 'integer':
case 'int':
$a = (integer)$value;
case 'boolean':
$a = (boolean)$value;
default:
$a = null;
}
~~~
Do not omit `break`.
### Code documentation
- Refer ot [phpDoc](http://phpdoc.org/) for documentation syntax.