Skip to content

Commit e9ad3d0

Browse files
committed
Fix typo
1 parent 3de00db commit e9ad3d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Composers/ThrottleTimeRemaining.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function getTimeRemaining()
3131
return trans('stagefront::errors.throttled.moment');
3232
}
3333

34-
$secondsRemaining = $this->getSecondRemaining($key);
34+
$secondsRemaining = $this->getSecondsRemaining($key);
3535

3636
Carbon::setLocale(app()->getLocale());
3737

@@ -69,7 +69,7 @@ protected function getCacheKey()
6969
*
7070
* @return mixed
7171
*/
72-
protected function getSecondRemaining($key)
72+
protected function getSecondsRemaining($key)
7373
{
7474
return app(RateLimiter::class)->availableIn($key);
7575
}

0 commit comments

Comments
 (0)