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

16 lines
349 B
PHP
Raw Normal View History

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