<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,5 +1,6 @@
 2009-07-07 - Sean Huber (shuber@huberry.com)
   * Require test_helper in tests
+  * Make magic methods public
 
 2009-06-21 - Sean Huber (shuber@huberry.com)
   * Update doc/TODO</diff>
      <filename>doc/CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -69,12 +69,12 @@ class Object extends Module {
         }
     }
     
-    protected function &amp;__call($method, $arguments = array()) {
+    function &amp;__call($method, $arguments = array()) {
         $result = &amp;$this-&gt;send_array('method_missing', array($method, $arguments));
         return $result;
     }
     
-    protected function &amp;__get($property) {
+    function &amp;__get($property) {
         if (isset($this-&gt;$property)) {
             return $this-&gt;instance_variables[$property];
         } else {
@@ -87,15 +87,15 @@ class Object extends Module {
         }
     }
     
-    protected function __isset($property) {
+    function __isset($property) {
         return isset($this-&gt;instance_variables[$property]);
     }
     
-    protected function __set($property, $value) {
+    function __set($property, $value) {
         $this-&gt;instance_variables[$property] = $value;
     }
     
-    protected function __unset($property) {
+    function __unset($property) {
         unset($this-&gt;instance_variables[$property]);
     }
     </diff>
      <filename>lib/object.php</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7fcf5c8c5435fe9946470508c9638b94af9b64b9</id>
    </parent>
  </parents>
  <author>
    <name>Sean Huber</name>
    <email>shuber@huberry.com</email>
  </author>
  <url>http://github.com/shuber/phuby/commit/6b89330375f67722b0ecfa5c733f76d3a33298ea</url>
  <id>6b89330375f67722b0ecfa5c733f76d3a33298ea</id>
  <committed-date>2009-07-07T14:59:04-07:00</committed-date>
  <authored-date>2009-07-07T14:59:04-07:00</authored-date>
  <message>Make magic methods public</message>
  <tree>85f70d4f7f2acb8807cf3efdda66376a1959e94c</tree>
  <committer>
    <name>Sean Huber</name>
    <email>shuber@huberry.com</email>
  </committer>
</commit>
