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\ApiResource;
use Chamilo\CoreBundle\Entity\ResourceNode;
use DateTime;
use Symfony\Component\Serializer\Annotation\Groups;
class CalendarEvent
{
public function __construct(
#[Groups(['calendar_event:read'])]
public ?string $id = null,
public ?string $title = null,
public ?string $content = null,
public ?DateTime $startDate = null,
public ?DateTime $endDate = null,
public bool $allDay = false,
public ?string $url = null,
public ?ResourceNode $resourceNode = null,
) {}
}