for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Crummy\Phlack\WebHook\Reply;
class EmptyReply extends Reply
{
protected $defaults = ['text' => ''];
/**
* Constructor.
*/
public function __construct()
parent::__construct($this->defaults);
}
* {@inheritdoc}
public function offsetSet($offset, $value)
// no-op
public function toArray()
return $this->defaults;