for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Http;
class NetworkMessage implements NetworkMessageInterface
{
/**
* @var string
*/
protected $message;
* @param string $message
public function __construct($message)
$this->message = $message;
}
*
public function __destruct()
unset($this->message);
* @override
* @inheritDoc
public function read()
return $this->message;