PATH:
home
/
fengshp
/
www
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
dashboard
/
domain
/
score-results
<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. namespace Yoast\WP\SEO\Dashboard\Domain\Score_Results; use Exception; /** * Exception for when score results are not found. */ class Score_Results_Not_Found_Exception extends Exception { /** * Constructor of the exception. */ public function __construct() { parent::__construct( 'Score results not found', 500 ); } }
[+]
..
[-] current-score.php
[edit]
[-] current-scores-list.php
[edit]
[-] score-results-not-found-exception.php
[edit]
[-] score-result.php
[edit]