blob: d2c4afb5653d90842f73b063c2a1fdbeb2cfe2c8 (
plain) (
tree)
|
|
<?php
declare(strict_types=1);
namespace Sabre\DAV;
/**
* This class contains the SabreDAV version constants.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class Version
{
/**
* Full version number.
*/
public const VERSION = '4.1.0';
}
|