Files
Phraseanet/lib/Alchemy/Phrasea/Webhook/Processor/AbstractProcessor.php
Nicolas Le Goff 24b885eb7c Fix tests
2014-07-03 15:07:35 +02:00

19 lines
357 B
PHP

<?php
namespace Alchemy\Phrasea\Webhook\Processor;
use Alchemy\Phrasea\Application;
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
abstract class AbstractProcessor
{
protected $event;
protected $app;
public function __construct(WebhookEvent $event, Application $app)
{
$this->event = $event;
$this->app = $app;
}
}