for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebServCo\Framework;
abstract class AbstractResponse
{
protected $content;
protected $statusCode;
public function setContent($content)
$this->content = (string) $content;
}