📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: LiteSpeed
2026-06-28 18:13:59
📂
/ (Root)
/
home
/
apkbfjox
/
kattu.com.pk
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
dashboard
/
domain
/
score-groups
📍 /home/apkbfjox/kattu.com.pk/wp-content/plugins/wordpress-seo/src/dashboard/domain/score-groups
🔄 Refresh
✏️
Editing: score-groups-interface.php
Writable
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Dashboard\Domain\Score_Groups; /** * This interface describes a score group implementation. */ interface Score_Groups_Interface { /** * Gets the name of the score group. * * @return string */ public function get_name(): string; /** * Gets the key of the score group that is used when filtering on the posts page. * * @return string */ public function get_filter_key(): string; /** * Gets the value of the score group that is used when filtering on the posts page. * * @return string */ public function get_filter_value(): string; /** * Gets the minimum score of the score group. * * @return int|null */ public function get_min_score(): ?int; /** * Gets the maximum score of the score group. * * @return int|null */ public function get_max_score(): ?int; /** * Gets the position of the score group. * * @return int */ public function get_position(): int; }
💾 Save Changes
❌ Cancel