<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -74,7 +74,7 @@ class Curl {
      * Sets the $cookie_file to &quot;curl_cookie.txt&quot; in the current directory
      * Also sets the $user_agent to $_SERVER['HTTP_USER_AGENT'] if it exists, 'Curl/PHP '.PHP_VERSION.' (http://github.com/shuber/curl)' otherwise
     **/
-    public function __construct() {
+    function __construct() {
         $this-&gt;cookie_file = dirname(__FILE__).DIRECTORY_SEPARATOR.'curl_cookie.txt';
         $this-&gt;user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : 'Curl/PHP '.PHP_VERSION.' (http://github.com/shuber/curl)';
     }
@@ -88,7 +88,7 @@ class Curl {
      * @param array|string $vars 
      * @return CurlResponse object
     **/
-    public function delete($url, $vars = array()) {
+    function delete($url, $vars = array()) {
         return $this-&gt;request('DELETE', $url, $vars);
     }
     
@@ -97,7 +97,7 @@ class Curl {
      *
      * @return string
     **/
-    public function error() {
+    function error() {
         return $this-&gt;error;
     }
     
@@ -110,7 +110,7 @@ class Curl {
      * @param array|string $vars 
      * @return CurlResponse
     **/
-    public function get($url, $vars = array()) {
+    function get($url, $vars = array()) {
         if (!empty($vars)) {
             $url .= (stripos($url, '?') !== false) ? '&amp;' : '?';
             $url .= (is_string($vars)) ? $vars : http_build_query($vars, '', '&amp;');
@@ -127,7 +127,7 @@ class Curl {
      * @param array|string $vars
      * @return CurlResponse
     **/
-    public function head($url, $vars = array()) {
+    function head($url, $vars = array()) {
         return $this-&gt;request('HEAD', $url, $vars);
     }
     
@@ -138,7 +138,7 @@ class Curl {
      * @param array|string $vars 
      * @return CurlResponse|boolean
     **/
-    public function post($url, $vars = array()) {
+    function post($url, $vars = array()) {
         return $this-&gt;request('POST', $url, $vars);
     }
     
@@ -151,7 +151,7 @@ class Curl {
      * @param array|string $vars 
      * @return CurlResponse|boolean
     **/
-    public function put($url, $vars = array()) {
+    function put($url, $vars = array()) {
         return $this-&gt;request('PUT', $url, $vars);
     }
     </diff>
      <filename>lib/curl.php</filename>
    </modified>
    <modified>
      <diff>@@ -34,7 +34,7 @@ class CurlResponse {
      *
      * @param string $response
     **/
-    public function __construct($response) {
+    function __construct($response) {
         # Headers regex
         $pattern = '#HTTP/\d\.\d.*?$.*?\r\n\r\n#ims';
         
@@ -71,7 +71,7 @@ class CurlResponse {
      *
      * @return string
     **/
-    public function __toString() {
+    function __toString() {
         return $this-&gt;body;
     }
     </diff>
      <filename>lib/curl_response.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c92be117e7a4dc7d5dc13a72c9ed17b1746f03bb</id>
    </parent>
  </parents>
  <author>
    <name>Sean Huber</name>
    <email>shuber@huberry.com</email>
  </author>
  <url>http://github.com/shuber/curl/commit/7965e9164ba69fec8d5da9e4f8bd4aece087b2fe</url>
  <id>7965e9164ba69fec8d5da9e4f8bd4aece087b2fe</id>
  <committed-date>2009-09-08T13:39:09-07:00</committed-date>
  <authored-date>2009-09-08T13:39:09-07:00</authored-date>
  <message>Remove access declaration on public functions</message>
  <tree>87f290e3069b792519ae8ce846f740a82a312b8d</tree>
  <committer>
    <name>Sean Huber</name>
    <email>shuber@huberry.com</email>
  </committer>
</commit>
