* @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://phpdoc.org */ namespace phpDocumentor\Reflection\DocBlock\Tags\Reference; use Webmozart\Assert\Assert; /** * Url reference used by {@see phpDocumentor\Reflection\DocBlock\Tags\See} */ final class Url implements Reference { /** * @var string */ private $uri; /** * Url constructor. */ public function __construct($uri) { Assert::stringNotEmpty($uri); $this->uri = $uri; } public function __toString() { return $this->uri; } }