<?php // phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong // phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded namespace Yoast\WP\SEO\Dashboard\Infrastructure\Endpoints; use Yoast\WP\SEO\Dashboard\Domain\Endpoint\Endpoint_Interface; use Yoast\WP\SEO\Dashboard\User_Interface\Time_Based_SEO_Metrics\Time_Based_SEO_Metrics_Route; /** * Represents the time based SEO metrics endpoint. */ class Time_Based_SEO_Metrics_Endpoint implements Endpoint_Interface { /** * Gets the name. * * @return string */ public function get_name(): string { return 'timeBasedSeoMetrics'; } /** * Gets the namespace. * * @return string */ public function get_namespace(): string { return Time_Based_SEO_Metrics_Route::ROUTE_NAMESPACE; } /** * Gets the route. * * @return string */ public function get_route(): string { return Time_Based_SEO_Metrics_Route::ROUTE_NAME; } /** * Gets the URL. * * @return string */ public function get_url(): string { return \rest_url( $this->get_namespace() . $this->get_route() ); } }