Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
RhysLees committed Nov 21, 2023
1 parent 036416d commit e57631c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ CodebarAg\LaravelMicrosoftPlanner\Data\Task {
+startDateTime: Carbon // Carbon\Carbon|null
+createdDateTime: Carbon // Carbon\Carbon
+dueDateTime: Carbon // Carbon\Carbon|null
+recurrence: null // string|null
+recurrence: null // array|null
+hasDescription: true // bool
+specifiedCompletionRequirements: "none" // string
+previewType: "noPreview" // string
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Task.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public function __construct(
public ?Carbon $startDateTime,
public Carbon $createdDateTime,
public ?Carbon $dueDateTime,
public ?string $recurrence,
public ?array $recurrence,
public bool $hasDescription,
public string $specifiedCompletionRequirements,
public string $previewType,
Expand Down

0 comments on commit e57631c

Please sign in to comment.