Factory method for chainability
Example:
return Response::create($body, 200) ->setSharedMaxAge(300);
string $content The response content:
integer $status The response status code:
array $headers An array of response headers:
public static function create($content = '', $status = 200, $headers = array()) {
return new static($content, $status, $headers);
}