Files
Phraseanet/lib/Alchemy/Phrasea/Core/Version.php
Romain Neutron 34b5d3f93f Add patch
2012-02-08 20:03:13 +01:00

37 lines
609 B
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2010 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\Core;
/**
*
* @package
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class Version
{
protected static $number = '3.6.0.0a2';
protected static $name = 'Brachiosaure';
public static function getNumber()
{
return static::$number;
}
public static function getName()
{
return static::$name;
}
}