for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Kerox\Messenger\Request;
use Psr\Http\Message\RequestInterface;
class WebhookRequest extends AbstractRequest
{
/**
* @param string $method
*
* @return RequestInterface
*/
public function build(string $method = 'post'): RequestInterface
return $this->origin;
}