1
0
mirror of synced 2025-02-19 17:13:13 +03:00
2021-03-31 11:00:48 +03:00

16 lines
349 B
PHP

<?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'];
}
}