File "Endpoint.php"

Full Path: /home/timepamn/dailynetworth.org/wp-content/plugins/jetpack-boost-git/app/rest-api/contracts/Endpoint.php
File size: 222 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Automattic\Jetpack_Boost\REST_API\Contracts;

interface Endpoint {

	public function name();

	public function request_methods();

	public function response( $request );

	public function permissions();
}