12 lines
169 B
PHP
12 lines
169 B
PHP
<?php
|
|
|
|
namespace WPML\Rest;
|
|
|
|
interface ITarget {
|
|
|
|
function get_routes();
|
|
function get_allowed_capabilities( \WP_REST_Request $request );
|
|
function get_namespace();
|
|
|
|
}
|