1<?php
2/**
3 * @author      Alex Bilbie <hello@alexbilbie.com>
4 * @copyright   Copyright (c) Alex Bilbie
5 * @license     http://mit-license.org/
6 *
7 * @link        https://github.com/thephpleague/oauth2-server
8 */
9
10namespace League\OAuth2\Server\Repositories;
11
12/**
13 * Repository interface.
14 */
15interface RepositoryInterface
16{
17}
18