for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Dandelion\Operation\Result;
class Message implements MessageInterface
{
/**
* @var string
*/
protected $type;
protected $text;
* @return string
public function getType(): string
return $this->type;
}
* @param string $type
* @return \Dandelion\Operation\Result\MessageInterface
public function setType(string $type): MessageInterface
$this->type = $type;
return $this;
public function getText(): string
return $this->text;
* @param string $text
*
public function setText(string $text): MessageInterface
$this->text = $text;