# give/2.13.1/src/API/RestRoute.php

GiveWP – Donation Plugin and Fundraising Platform, version 2.13.1. 15 lines.

- Page: https://pluginprobe.com/plugins/give/2.13.1/code/src/API/RestRoute.php
- Raw: https://pluginprobe.com/plugins/give/2.13.1/raw/src/API/RestRoute.php
- Modified: 2020-07-30T04:00:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/2.13.1/code/src/API/RestRoute.php#L10-L20`.

```php
<?php

namespace Give\API;

interface RestRoute {
	/**
	 * Register the route with WordPress using the register_rest_route function.
	 *
	 * @since 2.8.0
	 *
	 * @return void
	 */
	public function registerRoute();
}

```
