for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace League\Tactician\Bernard;
use Bernard\Message;
/**
* Indicates the command has been queued or not
*/
final class QueuedCommand
{
* @var Message
private $command;
* @param Message $command
public function __construct(Message $command)
$this->command = $command;
}
* Returns the wrapped command
*
* @return Message
public function getCommand()
return $this->command;