Files
Phraseanet/lib/Alchemy/Phrasea/Core/Version.php
Romain Neutron 1ba41c4421 Fix latest merge
2013-12-04 08:20:58 +01:00

29 lines
514 B
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2013 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Core;
class Version
{
protected static $number = '3.9.0-alpha.9';
protected static $name = 'Epanterias';
public static function getNumber()
{
return static::$number;
}
public static function getName()
{
return static::$name;
}
}