From e6c65c5e13e4eba2534564b6f836f9caedb4ed46 Mon Sep 17 00:00:00 2001 From: Keith Crain Date: Thu, 28 May 2020 01:00:02 -0400 Subject: [PATCH 01/16] phpDoc-Documentation --- class/class-mainwp-child-comments.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/class/class-mainwp-child-comments.php b/class/class-mainwp-child-comments.php index 8b128ae..c24ac9f 100644 --- a/class/class-mainwp-child-comments.php +++ b/class/class-mainwp-child-comments.php @@ -20,8 +20,9 @@ class MainWP_Child_Comments { protected static $instance = null; /** - * @var string - */ + * @var string Used by MainWP_Child_Comments::comments_clauses & MainWP_Child_comments::__constructor. + * @deprecate Unused element. + */ private $comments_and_clauses; /** @@ -116,12 +117,13 @@ class MainWP_Child_Comments { MainWP_Helper::write( $information ); } - /** * Comment WHERE Clauses. * * @param $clauses MySQL WHERE Clause. * @return array $clauses, Array of MySQL WHERE Clauses. + * + * @deprecated Unused Element. */ public function comments_clauses( $clauses ) { if ( $this->comments_and_clauses ) { From 377399bb2b5c29aabc5a41b1621add7f5074ad94 Mon Sep 17 00:00:00 2001 From: Keith Crain Date: Thu, 28 May 2020 01:00:15 -0400 Subject: [PATCH 02/16] phpDoc-Documentation --- class/class-mainwp-child-branding-render.php | 85 ++++++++++++++++---- 1 file changed, 68 insertions(+), 17 deletions(-) diff --git a/class/class-mainwp-child-branding-render.php b/class/class-mainwp-child-branding-render.php index 9bf2e5d..d856bbc 100644 --- a/class/class-mainwp-child-branding-render.php +++ b/class/class-mainwp-child-branding-render.php @@ -1,32 +1,55 @@