Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
saade committed Mar 28, 2024
1 parent 09605ef commit 6e9c9e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Data/EventData.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class EventData implements Arrayable
protected int|string|null $groupId = null;

protected int|string|null $resourceId = null;

protected ?array $resourceIds = null;

protected bool $allDay = false;
Expand All @@ -34,6 +34,7 @@ class EventData implements Arrayable
protected ?string $textColor = null;

protected ?array $extendedProps = null;

protected array $extraProperties = [];

public static function make(): static
Expand Down Expand Up @@ -62,8 +63,7 @@ public function groupId(int|string $groupId): static
}

/**
* Events can be associated with a resource when its resourceId property matches one of
* the resource object’s id field
* Events can be associated with a resource when its resourceId property matches one of the resource object’s id field.
*/
public function resourceId(int|string $resourceId): static
{
Expand Down

0 comments on commit 6e9c9e2

Please sign in to comment.