Commit 9db9adcf by Alexander Makarov

switch style update

parent 083ca919
......@@ -227,6 +227,7 @@ switch ($this->phpType) {
$a = (string)$value;
break;
case 'integer':
case 'int':
$a = (integer)$value;
break;
case 'boolean':
......@@ -234,12 +235,9 @@ switch ($this->phpType) {
break;
default:
$a = null;
break;
}
~~~
Do not omit `break`.
### Code documentation
- Refer ot [phpDoc](http://phpdoc.org/) for documentation syntax.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment