Skip to content

Commit

Permalink
Fix Issue Where Page Container Properties Do Not Auto Initialize (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
onairmarc authored Apr 25, 2024
1 parent ce830ee commit b35f6b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Objects/SdkObjects/PageContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

class PageContainer extends BasePageContainer
{
public ?int $next;
public ?int $previous;
public ?int $next = null;
public ?int $previous = null;
}

0 comments on commit b35f6b6

Please sign in to comment.