for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace seregazhuk\React\Memcached\Protocol\Request;
abstract class Request
{
/**
* @var string
*/
protected $command;
public function command(): string
return $this->command;
}