We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de00db commit e9ad3d0Copy full SHA for e9ad3d0
src/Composers/ThrottleTimeRemaining.php
@@ -31,7 +31,7 @@ protected function getTimeRemaining()
31
return trans('stagefront::errors.throttled.moment');
32
}
33
34
- $secondsRemaining = $this->getSecondRemaining($key);
+ $secondsRemaining = $this->getSecondsRemaining($key);
35
36
Carbon::setLocale(app()->getLocale());
37
@@ -69,7 +69,7 @@ protected function getCacheKey()
69
*
70
* @return mixed
71
*/
72
- protected function getSecondRemaining($key)
+ protected function getSecondsRemaining($key)
73
{
74
return app(RateLimiter::class)->availableIn($key);
75
0 commit comments