From 6846ebb4e33d51faee4a1e99c241a7a24861e0e4 Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Thu, 10 Jun 2021 16:30:21 +0300 Subject: [PATCH] Fix issues in classobj directory Part of #658 --- .../classobj/functions/get-called-class.xml | 6 +++++ .../functions/get-declared-classes.xml | 6 +++++ .../functions/get-declared-interfaces.xml | 6 +++++ .../classobj/functions/method-exists.xml | 11 ++++---- .../classobj/functions/property-exists.xml | 25 ++++++++++--------- 5 files changed, 37 insertions(+), 17 deletions(-) diff --git a/reference/classobj/functions/get-called-class.xml b/reference/classobj/functions/get-called-class.xml index aa6dbcde14..4b35b2ffe1 100644 --- a/reference/classobj/functions/get-called-class.xml +++ b/reference/classobj/functions/get-called-class.xml @@ -15,6 +15,12 @@ Gets the name of the class the static method is called in. + + + &reftitle.parameters; + &no.function.parameters; + + &reftitle.returnvalues; diff --git a/reference/classobj/functions/get-declared-classes.xml b/reference/classobj/functions/get-declared-classes.xml index df1a0d9d00..403363259f 100644 --- a/reference/classobj/functions/get-declared-classes.xml +++ b/reference/classobj/functions/get-declared-classes.xml @@ -15,6 +15,12 @@ Gets the declared classes. + + + &reftitle.parameters; + &no.function.parameters; + + &reftitle.returnvalues; diff --git a/reference/classobj/functions/get-declared-interfaces.xml b/reference/classobj/functions/get-declared-interfaces.xml index 09b176345f..1588d17aca 100644 --- a/reference/classobj/functions/get-declared-interfaces.xml +++ b/reference/classobj/functions/get-declared-interfaces.xml @@ -15,6 +15,12 @@ Gets the declared interfaces. + + + &reftitle.parameters; + &no.function.parameters; + + &reftitle.returnvalues; diff --git a/reference/classobj/functions/method-exists.xml b/reference/classobj/functions/method-exists.xml index 61966e98ab..f2150f0575 100644 --- a/reference/classobj/functions/method-exists.xml +++ b/reference/classobj/functions/method-exists.xml @@ -49,11 +49,6 @@ - - &reftitle.notes; - ¬e.uses-autoload; - - &reftitle.examples; @@ -92,6 +87,12 @@ bool(true) + + + &reftitle.notes; + ¬e.uses-autoload; + + &reftitle.seealso; diff --git a/reference/classobj/functions/property-exists.xml b/reference/classobj/functions/property-exists.xml index 0629dad054..cba445274e 100644 --- a/reference/classobj/functions/property-exists.xml +++ b/reference/classobj/functions/property-exists.xml @@ -57,18 +57,6 @@ - - &reftitle.notes; - ¬e.uses-autoload; - - - The property_exists function cannot detect properties - that are magically accessible using the __get - magic method. - - - - &reftitle.examples; @@ -101,6 +89,19 @@ myClass::test(); + + + &reftitle.notes; + ¬e.uses-autoload; + + + The property_exists function cannot detect properties + that are magically accessible using the __get + magic method. + + + + &reftitle.seealso;