Files
Phraseanet/lib/Alchemy/Phrasea/Core/Service/ServiceInterface.php
2012-02-21 16:31:37 +01:00

34 lines
556 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\Service;
/**
*
* @package
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
interface ServiceInterface
{
public function getName();
public function getType();
public function getDriver();
public function getOptions();
public function getScope();
}