Skip to content

Commit

Permalink
Merge pull request #634 from DannyvdSluijs/Fix-633
Browse files Browse the repository at this point in the history
Add initial values for type properties.
  • Loading branch information
stephangroen authored Jan 17, 2024
2 parents e95a292 + 9a94b01 commit 953b9ec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Picqer/Financials/Exact/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,17 +98,17 @@ class Connection

public ?string $nextUrl = null;

protected ?int $dailyLimit;
protected ?int $dailyLimit = null;

protected ?int $dailyLimitRemaining;
protected ?int $dailyLimitRemaining = null;

protected ?int $dailyLimitReset;
protected ?int $dailyLimitReset = null;

protected ?int $minutelyLimit;
protected ?int $minutelyLimit = null;

protected ?int $minutelyLimitRemaining;
protected ?int $minutelyLimitRemaining = null;

protected ?int $minutelyLimitReset;
protected ?int $minutelyLimitReset = null;

private bool $waitOnMinutelyRateLimitHit = false;

Expand Down

0 comments on commit 953b9ec

Please sign in to comment.