mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-18 23:43:12 +00:00
14 lines
269 B
PHP
14 lines
269 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\TaskManager\Job;
|
|
|
|
use Alchemy\Phrasea\TaskManager\Job\WebhookJob;
|
|
|
|
class WebhookJobTest extends JobTestCase
|
|
{
|
|
protected function getJob()
|
|
{
|
|
return new WebhookJob($this->createTranslatorMock(), null, null);
|
|
}
|
|
}
|