mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
Fix tests
This commit is contained in:
18
lib/Alchemy/Phrasea/Webhook/Processor/AbstractProcessor.php
Normal file
18
lib/Alchemy/Phrasea/Webhook/Processor/AbstractProcessor.php
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user