Skip to content

Commit 1d9ea06

Browse files
committed
Add missing exception imports to Base64UrlSafe.php
Imported InvalidArgumentException and RangeException to ensure proper handling of related exceptions. This update prevents potential undefined class errors and aligns with best practices.
1 parent 8e7378c commit 1d9ea06

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Library/Core/Util/Base64UrlSafe.php

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace Jose\Component\Core\Util;
66

7+
use InvalidArgumentException;
8+
use RangeException;
79
use function strlen;
810

911
/**

0 commit comments

Comments
 (0)