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