From 2e80216aa0abef3f95312d46f709e213cd80d980 Mon Sep 17 00:00:00 2001 From: Erik Amaru Ortiz Date: Wed, 5 Mar 2014 20:19:25 -0400 Subject: [PATCH] FIX typing error on __constructor declaration --- workflow/engine/src/ProcessMaker/Util/IO/HttpStream.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow/engine/src/ProcessMaker/Util/IO/HttpStream.php b/workflow/engine/src/ProcessMaker/Util/IO/HttpStream.php index 98e693630..d8870fd77 100644 --- a/workflow/engine/src/ProcessMaker/Util/IO/HttpStream.php +++ b/workflow/engine/src/ProcessMaker/Util/IO/HttpStream.php @@ -123,7 +123,7 @@ class HttpStream 505 => 'HTTP Version Not Supported', ); - public function __constructt($content = "", $status = 200, $headers = array()) + public function __construct($content = "", $status = 200, $headers = array()) { if (! empty($content)) { $this->loadFromString($content);