Skip to content

Commit ff924cc

Browse files
effectpetWorksDev
authored andcommitted
Add missing timestamp restrictions (#10)
Fixes #9
1 parent 4715b74 commit ff924cc

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.0.1] - 2019-11-29
4+
### Changed
5+
- Add missing timestamp restrictions
6+
37
## [1.0.0] - 2018-12-10
48
### Changed
59
- Official Release 1.0

src/Client/CheckpointStatisticsClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,9 @@ protected function getTableName(): string
99
{
1010
return 'checkpointstatistics';
1111
}
12+
13+
protected function isRestrictable(): bool
14+
{
15+
return true;
16+
}
1217
}

src/Client/ProfileChangelogsClient.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,9 @@ protected function getAdditionalParam(): array
2727
{
2828
return ['pool_id' => $this->pool_id];
2929
}
30+
31+
protected function isRestrictable(): bool
32+
{
33+
return true;
34+
}
3035
}

0 commit comments

Comments
 (0)