Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
src
/
dashboard
/
domain
/
score-groups
/
readability-score-groups
:
no-readability-score-group.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. // phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded namespace Yoast\WP\SEO\Dashboard\Domain\Score_Groups\Readability_Score_Groups; /** * This class describes a missing readability score group. */ class No_Readability_Score_Group extends Abstract_Readability_Score_Group { /** * Gets the name of the readability score group. * * @return string The name of the readability score group. */ public function get_name(): string { return 'notAnalyzed'; } /** * Gets the value of the readability score group that is used when filtering on the posts page. * * @return string The name of the readability score group that is used when filtering on the posts page. */ public function get_filter_value(): string { return 'na'; } /** * Gets the position of the readability score group. * * @return int The position of the readability score group. */ public function get_position(): int { return 3; } /** * Gets the minimum score of the readability score group. * * @return null The minimum score of the readability score group. */ public function get_min_score(): ?int { return null; } /** * Gets the maximum score of the readability score group. * * @return null The maximum score of the readability score group. */ public function get_max_score(): ?int { return null; } }