We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2234a18 commit 6e30512Copy full SHA for 6e30512
Model/Config/Entity/Erasure.php
@@ -54,16 +54,10 @@ public function getAllowedStatesToErase(int|string|null $website = null): array
54
}
55
56
/**
57
- * @param int|string|null $website
58
- *
59
* @return int
60
*/
61
- public function getDelay(int|string|null $website = null): int
+ public function getDelay(): int
62
{
63
- return (int)$this->scopeConfig->getValue(
64
- self::CONFIG_PATH_ERASURE_DELAY,
65
- ScopeInterface::SCOPE_WEBSITE,
66
- $website
67
- );
+ return (int)$this->scopeConfig->getValue(self::CONFIG_PATH_ERASURE_DELAY, ScopeInterface::SCOPE_WEBSITE);
68
69
0 commit comments