Skip to content

Commit

Permalink
Fix missing sprintf use
Browse files Browse the repository at this point in the history
  • Loading branch information
glaubinix committed Oct 10, 2024
1 parent 19a23ea commit 79aad1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use Throwable;
use function assert;
use function count;
use function sprintf;

/**
* This class is used to load OTP object from a provisioning Uri.
Expand Down
1 change: 1 addition & 0 deletions src/OTP.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
use function chr;
use function count;
use function is_string;
use function sprintf;
use const STR_PAD_LEFT;

abstract class OTP implements OTPInterface
Expand Down
1 change: 1 addition & 0 deletions src/ParameterTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
use function in_array;
use function is_int;
use function is_string;
use function sprintf;

trait ParameterTrait
{
Expand Down

0 comments on commit 79aad1f

Please sign in to comment.