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