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;
class NotificationTitleFormattedEvent extends AbstractEvent
{
public function getTitle(): string
return $this->data['title'] ?? '';
}
public function setTitle(string $title): static
$this->data['title'] = $title;
return $this;