for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Http\Event;
use Psr\Http\Message\ServerRequestInterface;
final class BeforeRequest
{
public function __construct(private ServerRequestInterface $request)
}
public function getRequest(): ServerRequestInterface
return $this->request;