PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
routes
<?php namespace Yoast\WP\SEO\Routes; use WP_REST_Response; /** * Abstract_Action_Route class. * * Abstract class for action routes. */ abstract class Abstract_Action_Route implements Route_Interface { /** * Responds to an indexing request. * * @param array $objects The objects that have been indexed. * @param string $next_url The url that should be called to continue reindexing. False if done. * * @return WP_REST_Response The response. */ protected function respond_with( $objects, $next_url ) { return new WP_REST_Response( [ 'objects' => $objects, 'next_url' => $next_url, ] ); } }
[-] wincher-route.php
[edit]
[-] importing-route.php
[edit]
[-] first-time-configuration-route.php
[edit]
[-] yoast-head-rest-field.php
[edit]
[-] indexing-route.php
[edit]
[-] workouts-route.php
[edit]
[-] semrush-route.php
[edit]
[-] endpoint-interface.php
[edit]
[-] abstract-indexation-route.php
[edit]
[-] alert-dismissal-route.php
[edit]
[-] integrations-route.php
[edit]
[-] indexables-head-route.php
[edit]
[-] abstract-action-route.php
[edit]
[-] supported-features-route.php
[edit]
[-] meta-search-route.php
[edit]
[+]
..
[-] route-interface.php
[edit]