Files
Phraseanet/lib/Alchemy/Phrasea/Helper/Helper.php
Romain Neutron 70c762e93d Cleanup Helpers
2011-12-24 03:14:19 +01:00

53 lines
756 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\Helper;
use Alchemy\Phrasea\Core;
/**
*
* @package
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class Helper
{
/**
*
* @var Alchemy\Phrasea\Core\Kernel
*/
protected $core;
/**
*
* @param Kernel $kernel
* @return Helper
*/
public function __construct(Core $core)
{
$this->core = $core;
return $this;
}
/**
*
* @return Alchemy\Phrasea\Core
*/
public function getCore()
{
return $this->core;
}
}