1
0
mirror of synced 2024-11-24 05:46:08 +03:00
service-bundle/Tests/DataFixtures/TestMessage.php

17 lines
442 B
PHP
Raw Permalink Normal View History

2021-03-31 11:00:48 +03:00
<?php
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
use RetailCrm\ServiceBundle\Messenger\CommandMessage;
2021-04-16 13:37:47 +03:00
use RetailCrm\ServiceBundle\Messenger\Middleware\LockableMessage;
2021-03-31 11:00:48 +03:00
2021-04-16 13:37:47 +03:00
class TestMessage extends CommandMessage implements LockableMessage
2021-03-31 11:00:48 +03:00
{
public function __construct()
{
$this->commandName = 'test';
$this->arguments = ['argument' => 'argument'];
$this->options = ['option' => 'option'];
}
}