| 1 | <?php |
||
| 8 | class DeleteShortUrlsOptions extends AbstractOptions |
||
| 9 | { |
||
| 10 | private $visitsThreshold = 15; |
||
| 11 | private $checkVisitsThreshold = true; |
||
| 12 | |||
| 13 | 2 | public function getVisitsThreshold(): int |
|
| 17 | |||
| 18 | 4 | protected function setVisitsThreshold(int $visitsThreshold): self |
|
| 23 | |||
| 24 | 3 | public function doCheckVisitsThreshold(): bool |
|
| 28 | |||
| 29 | 4 | protected function setCheckVisitsThreshold(bool $checkVisitsThreshold): self |
|
| 34 | } |
||
| 35 |