for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Slacky\Http;
use Slacky\Contracts\Http\Response;
use Slacky\Contracts\Http\ResponseFactory;
class SlackResponseFactory implements ResponseFactory {
/**
* {@inheritdoc}
*/
public function build($body, array $headers, $statusCode): Response
{
return new SlackResponse($body, $headers, $statusCode);
}