FIX typing error on __constructor declaration

This commit is contained in:
Erik Amaru Ortiz
2014-03-05 20:19:25 -04:00
parent 611073ab90
commit 2e80216aa0

View File

@@ -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);