Updates documentation of wcf\data\IDatabaseObjectProcessor (2)
authorMatthias Schmidt <gravatronics@live.com>
Wed, 7 Sep 2011 08:37:35 +0000 (10:37 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Wed, 7 Sep 2011 08:37:35 +0000 (10:37 +0200)
wcfsetup/install/files/lib/data/IDatabaseObjectProcessor.class.php

index f3a04bd7990fce24f6cc20469811b89d3409f86f..e0441f2879c3724ff86956dd9c42de8138d3f402 100644 (file)
@@ -20,8 +20,7 @@ interface IDatabaseObjectProcessor {
        public function __construct(DatabaseObject $object);
        
        /**
-        * Delegates property accesses to the processed object if the processor
-        * object has no such property.
+        * Delegates accesses to inaccessible object properties the processed object.
         *   
         * @param       string          $name
         * @return      mixed
@@ -29,8 +28,8 @@ interface IDatabaseObjectProcessor {
        public function __get($name);
        
        /**
-        * Delegates isset calls for object properties to the processed object if
-        * the processor object has no such property.
+        * Delegates isset calls for inaccessible object properties to the processed
+        * object.
         * 
         * @param       string          $name
         * @return      boolean