Fix tests

This commit is contained in:
Nicolas Le Goff
2014-07-03 15:07:35 +02:00
parent 7818a5e8e3
commit 24b885eb7c
15 changed files with 198 additions and 27 deletions

View File

@@ -0,0 +1,18 @@
<?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;
}
}