mirror of
https://github.com/elyby/accounts.git
synced 2024-12-28 16:10:40 +05:30
c0aa78d156
Completely removed usage of the RabbitMQ. Queue now based on Redis channels. Worker process now extracted as separate docker container. Base image upgraded to the 1.8.0 version (PHP 7.2.7 and pcntl extension).
16 lines
305 B
PHP
16 lines
305 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\codeception\common\fixtures;
|
|
|
|
use common\models\WebHook;
|
|
use yii\test\ActiveFixture;
|
|
|
|
class WebHooksFixture extends ActiveFixture {
|
|
|
|
public $modelClass = WebHook::class;
|
|
|
|
public $dataFile = '@tests/codeception/common/fixtures/data/webhooks.php';
|
|
|
|
}
|