diff options
author | Zeev Suraski <zeev@php.net> | 2003-07-07 09:08:33 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2003-07-07 09:08:33 +0000 |
commit | 65f8bafb29a58e64893bf484d18f71c2163bd5de (patch) | |
tree | 773dbfb65031add7dab9e75d24699391bab46bf8 /Zend/zend_objects_API.c | |
parent | 765f349ecd551134a8fe7757a61b2bfef4b87b11 (diff) | |
download | php-git-65f8bafb29a58e64893bf484d18f71c2163bd5de.tar.gz |
Fix & whitespace
Diffstat (limited to 'Zend/zend_objects_API.c')
-rw-r--r-- | Zend/zend_objects_API.c | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/Zend/zend_objects_API.c b/Zend/zend_objects_API.c index 34df13e159..8867080647 100644 --- a/Zend/zend_objects_API.c +++ b/Zend/zend_objects_API.c @@ -271,23 +271,25 @@ ZEND_API zend_object_handlers *zend_get_std_object_handlers() static zend_object_handlers zend_object_proxy_handlers = { ZEND_OBJECTS_STORE_HANDLERS, - NULL, /* read_property */ - NULL, /* write_property */ - NULL, /* get_property_ptr */ - NULL, /* get_property_zval_ptr */ - zend_object_proxy_get, /* get */ - zend_object_proxy_set, /* set */ - NULL, /* has_property */ - NULL, /* unset_property */ - NULL, /* get_properties */ - NULL, /* get_method */ - NULL, /* call_method */ - NULL, /* get_constructor */ - NULL, /* get_class_entry */ - NULL, /* get_class_name */ - NULL /* compare_objects */ + NULL, /* read_property */ + NULL, /* write_property */ + NULL, /* write_dimension */ + NULL, /* get_property_ptr */ + NULL, /* get_property_zval_ptr */ + zend_object_proxy_get, /* get */ + zend_object_proxy_set, /* set */ + NULL, /* has_property */ + NULL, /* unset_property */ + NULL, /* get_properties */ + NULL, /* get_method */ + NULL, /* call_method */ + NULL, /* get_constructor */ + NULL, /* get_class_entry */ + NULL, /* get_class_name */ + NULL /* compare_objects */ }; + /* * Local variables: * tab-width: 4 |