for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace seregazhuk\React\Memcached\Protocol\Response;
use seregazhuk\React\Memcached\Protocol\Parser;
class WriteResponse extends Response
{
/**
* {@inheritdoc}
*/
public function parse()
if (trim($this->data) !== Parser::RESPONSE_STORED) {
$this->fail();
}
return true;