From ee7ce0d16141f277c6a85240a3c6dcb2a0a95603 Mon Sep 17 00:00:00 2001
From: jrfnl <jrfnl@users.noreply.github.com>
Date: Wed, 29 Mar 2023 00:35:02 +0200
Subject: [PATCH] CS: all methods should have visibility declared
---
src/wp-includes/html-api/class-wp-html-tag-processor.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/wp-includes/html-api/class-wp-html-tag-processor.php b/src/wp-includes/html-api/class-wp-html-tag-processor.php
index 82a40d0ac9..df11b0313d 100644
a
|
b
|
class WP_HTML_Tag_Processor { |
1743 | 1743 | * @param string $prefix Prefix of requested attribute names. |
1744 | 1744 | * @return array|null List of attribute names, or `null` when no tag opener is matched. |
1745 | 1745 | */ |
1746 | | function get_attribute_names_with_prefix( $prefix ) { |
| 1746 | public function get_attribute_names_with_prefix( $prefix ) { |
1747 | 1747 | if ( $this->is_closing_tag || null === $this->tag_name_starts_at ) { |
1748 | 1748 | return null; |
1749 | 1749 | } |