for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ytake\KsqlClient\Entity;
/**
* Class CommandStatus
*/
class CommandStatus implements EntityInterface
{
/** @var string */
protected $message;
protected $status;
* @param string $message
* @param string $status
public function __construct(string $message, string $status)
$this->message = $message;
$this->status = $status;
}
* @return string
public function getMessage(): string
return $this->message;
public function getStatus(): string
return $this->status;