summaryrefslogtreecommitdiff
path: root/ext/standard/tests/class_object/method_exists_basic_001.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/class_object/method_exists_basic_001.phpt')
-rw-r--r--ext/standard/tests/class_object/method_exists_basic_001.phpt6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/tests/class_object/method_exists_basic_001.phpt b/ext/standard/tests/class_object/method_exists_basic_001.phpt
index 2f11e4c46e..7449f88572 100644
--- a/ext/standard/tests/class_object/method_exists_basic_001.phpt
+++ b/ext/standard/tests/class_object/method_exists_basic_001.phpt
@@ -3,9 +3,9 @@ method_exists() on userspace classes; static & non-static methods with various v
--FILE--
<?php
/* Prototype : proto bool is_subclass_of(object object, string class_name)
- * Description: Returns true if the object has this class as one of its parents
+ * Description: Returns true if the object has this class as one of its parents
* Source code: Zend/zend_builtin_functions.c
- * Alias to functions:
+ * Alias to functions:
*/
Class B {
@@ -14,7 +14,7 @@ Class B {
private function inherit_priv() {}
static public function inherit_static_pub() {}
static protected function inherit_static_prot() {}
- static private function inherit_static_priv() {}
+ static private function inherit_static_priv() {}
}
Class C extends B {