summaryrefslogtreecommitdiff
path: root/ext/dom/documenttype.c
diff options
context:
space:
mode:
authorRob Richards <rrichards@php.net>2004-11-18 19:54:30 +0000
committerRob Richards <rrichards@php.net>2004-11-18 19:54:30 +0000
commitb87d8cdfd09639f307ed531f268a9e28d83adbdf (patch)
treeb3586d855254f8c99a1e42673deb6dc3261a85c8 /ext/dom/documenttype.c
parent1e0212ef8e4b7901d563e3cdd143b039b8517a8b (diff)
downloadphp-git-b87d8cdfd09639f307ed531f268a9e28d83adbdf.tar.gz
prototype fixes (Jakub Vrána)
Diffstat (limited to 'ext/dom/documenttype.c')
-rw-r--r--ext/dom/documenttype.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/dom/documenttype.c b/ext/dom/documenttype.c
index 9d030801d9..d3100b0845 100644
--- a/ext/dom/documenttype.c
+++ b/ext/dom/documenttype.c
@@ -38,7 +38,7 @@ zend_function_entry php_dom_documenttype_class_functions[] = {
{NULL, NULL, NULL}
};
-/* {{{ proto name string
+/* {{{ name string
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1844763134
Since:
@@ -64,7 +64,7 @@ int dom_documenttype_name_read(dom_object *obj, zval **retval TSRMLS_DC)
-/* {{{ proto entities DOMNamedNodeMap
+/* {{{ entities DOMNamedNodeMap
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-1788794630
Since:
@@ -97,7 +97,7 @@ int dom_documenttype_entities_read(dom_object *obj, zval **retval TSRMLS_DC)
-/* {{{ proto notations DOMNamedNodeMap
+/* {{{ notations DOMNamedNodeMap
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-D46829EF
Since:
@@ -130,7 +130,7 @@ int dom_documenttype_notations_read(dom_object *obj, zval **retval TSRMLS_DC)
-/* {{{ proto publicId string
+/* {{{ publicId string
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-publicId
Since: DOM Level 2
@@ -160,7 +160,7 @@ int dom_documenttype_public_id_read(dom_object *obj, zval **retval TSRMLS_DC)
-/* {{{ proto systemId string
+/* {{{ systemId string
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-systemId
Since: DOM Level 2
@@ -189,7 +189,7 @@ int dom_documenttype_system_id_read(dom_object *obj, zval **retval TSRMLS_DC)
-/* {{{ proto internalSubset string
+/* {{{ internalSubset string
readonly=yes
URL: http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/DOM3-Core.html#core-ID-Core-DocType-internalSubset
Since: DOM Level 2