1<?php
2
3namespace Sabre\Uri;
4
5/**
6 * This class contains the version number for this package.
7 *
8 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
9 * @author Evert Pot (http://evertpot.com/)
10 * @license http://sabre.io/license/
11 */
12class Version {
13
14    /**
15     * Full version number
16     */
17    const VERSION = '1.2.1';
18
19}
20