Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
haspicol
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
dashboard
/
domain
/
endpoint
:
endpoint-interface.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. namespace Yoast\WP\SEO\Dashboard\Domain\Endpoint; interface Endpoint_Interface { /** * Gets the name. * * @return string */ public function get_name(): string; /** * Gets the namespace. * * @return string */ public function get_namespace(): string; /** * Gets the route. * * @return string */ public function get_route(): string; /** * Gets the URL. * * @return string */ public function get_url(): string; }