1<?php
2
3declare(strict_types=1);
4
5/**
6 * This file is part of phpDocumentor.
7 *
8 *  For the full copyright and license information, please view the LICENSE
9 *  file that was distributed with this source code.
10 *
11 * @link http://phpdoc.org
12 */
13
14namespace phpDocumentor\Reflection\DocBlock\Tags\Reference;
15
16/**
17 * Interface for references in {@see \phpDocumentor\Reflection\DocBlock\Tags\See}
18 */
19interface Reference
20{
21    public function __toString() : string;
22}
23