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\HookEvent;
use Chamilo\CourseBundle\Entity\CLp;
class LearningPathCreatedHookEvent extends HookEvent
{
public function getLp(): ?CLp
return $this->data['lp'] ?? null;
}