for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* For licensing terms, see /license.txt */
declare(strict_types=1);
namespace Chamilo\CoreBundle\Event;
use Chamilo\CoreBundle\Entity\PortfolioComment;
class PortfolioCommentScoredEvent extends AbstractEvent
{
public function getComment(): ?PortfolioComment
return $this->data['comment'] ?? null;
}