Files
Phraseanet/lib/Alchemy/Phrasea/Core/Version.php
2016-05-20 17:01:36 +02:00

42 lines
623 B
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 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
{
/**
* @var string
*/
private $number = '4.0.0-alpha.8';
/**
* @var string
*/
private $name = 'Itemirus';
/**
* @return string
*/
public function getNumber()
{
return $this->number;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
}