for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\NewsBundle\Event;
use Symfony\Component\HttpFoundation\Response;
final class GetResponseCommentEvent extends CommentEvent
{
/**
* @var Response|null
private $response;
public function getResponse(): ?Response
return $this->response;
}
public function setResponse(?Response $response): void
$this->response = $response;