diff --git a/Message/RequestAbstract.php b/Message/RequestAbstract.php index c76f7788e..a7f75bdeb 100644 --- a/Message/RequestAbstract.php +++ b/Message/RequestAbstract.php @@ -107,6 +107,8 @@ abstract class RequestAbstract implements MessageInterface return (string) $this->data[$key]; case 'float': return (float) $this->data[$key]; + case 'bool': + return (bool) $this->data[$key]; default: return $this->data[$key]; }