Skip to content

Commit

Permalink
Add missing exception imports to Base64UrlSafe.php
Browse files Browse the repository at this point in the history
Imported InvalidArgumentException and RangeException to ensure proper handling of related exceptions. This update prevents potential undefined class errors and aligns with best practices.
  • Loading branch information
Spomky committed Dec 12, 2024
1 parent 8e7378c commit 1d9ea06
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Library/Core/Util/Base64UrlSafe.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

namespace Jose\Component\Core\Util;

use InvalidArgumentException;
use RangeException;
use function strlen;

/**
Expand Down

0 comments on commit 1d9ea06

Please sign in to comment.