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