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\ResponseInterface;
final class AfterEmit
{
public function __construct(private ?ResponseInterface $response)
}
public function getResponse(): ?ResponseInterface
return $this->response;