for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Disque\Connection\Response;
class IntResponse extends BaseResponse
{
/**
* Parse response
*
* @return string Response
*/
public function parse()
return (int) $this->data;
}