Files
Phraseanet/lib/Alchemy/Phrasea/Core/Event/ApiResultEvent.php
2013-03-25 19:55:33 +01:00

24 lines
469 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\Event;
use Alchemy\Phrasea\Core\PhraseaEvents;
use Symfony\Component\EventDispatcher\Event as SfEvent;
class ApiResultEvent extends SfEvent
{
public function getName()
{
return PhraseaEvents::API_RESULT;
}
}