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

17 lines
442 B
PHP

<?php
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
use RetailCrm\ServiceBundle\Messenger\CommandMessage;
use RetailCrm\ServiceBundle\Messenger\Middleware\LockableMessage;
class TestMessage extends CommandMessage implements LockableMessage
{
public function __construct()
{
$this->commandName = 'test';
$this->arguments = ['argument' => 'argument'];
$this->options = ['option' => 'option'];
}
}