1
0
mirror of synced 2024-11-24 22:06:06 +03:00
service-bundle/Tests/Fixtures/App/TestCommandMessage.php
2021-03-31 11:00:48 +03:00

16 lines
350 B
PHP

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