golden hour
/home/doctorbruno/public_html/doctorbruno.in/wp-content/plugins/wordpress-seo/src/routes/endpoint
⬆️ Go Up
Upload
File/Folder
Size
Actions
endpoint-interface.php
451 B
Del
OK
endpoint-list.php
1.63 KB
Del
OK
endpoints-repository.php
843 B
Del
OK
Edit: endpoint-interface.php
<?php namespace Yoast\WP\SEO\Routes\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; }
Save