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