mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
19 lines
357 B
PHP
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;
|
|
}
|
|
}
|