From 510211cfd0e89766b79c3fd5dfeccde5f20c753e Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 29 Mar 2016 11:40:27 -0400 Subject: [PATCH] Fix broken tests --- src/Aviat/Ion/View/HttpView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aviat/Ion/View/HttpView.php b/src/Aviat/Ion/View/HttpView.php index b31b2d67..7ff97f01 100644 --- a/src/Aviat/Ion/View/HttpView.php +++ b/src/Aviat/Ion/View/HttpView.php @@ -55,7 +55,7 @@ class HttpView extends BaseView { public function setStatusCode($code) { $this->response = $this->response->withStatus($code) - ->withProtocolVersion(1.1); + ->withProtocolVersion('1.1'); return $this; }