Updated doc to avoid E_STRICT messages.

This commit is contained in:
Juan Basso 2010-11-09 21:12:40 -02:00
parent c6dd77de6f
commit 8a4faa1e69

View file

@ -138,12 +138,12 @@ class HttpSocket extends CakeSocket {
* You can use a url string to set the url and use default configurations for
* all other options:
*
* `$http =& new HttpSockect('http://cakephp.org/');`
* `$http = new HttpSockect('http://cakephp.org/');`
*
* Or use an array to configure multiple options:
*
* {{{
* $http =& new HttpSocket(array(
* $http = new HttpSocket(array(
* 'host' => 'cakephp.org',
* 'timeout' => 20
* ));