Skip to content

Commit

Permalink
Fix final
Browse files Browse the repository at this point in the history
  • Loading branch information
denisyukphp committed Mar 22, 2022
1 parent 3df2322 commit bd2f904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ImmediatelyThrowableBackOff.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Orangesoft\BackOff;

class ImmediatelyThrowableBackOff implements BackOffInterface
final class ImmediatelyThrowableBackOff implements BackOffInterface
{
public function backOff(int $attempt, \Throwable $throwable): void
{
Expand Down
2 changes: 1 addition & 1 deletion src/Jitter/NullJitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Orangesoft\BackOff\Duration\DurationInterface;

class NullJitter implements JitterInterface
final class NullJitter implements JitterInterface
{
public function jitter(DurationInterface $duration): DurationInterface
{
Expand Down

0 comments on commit bd2f904

Please sign in to comment.