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