diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-05-30 18:36:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 18:36:23 +0200 |
commit | 928f22052f3fb52c78c91e5c993702ab673c0dc6 (patch) | |
tree | c5ff2d5eb72198455ddca2aabfab063b6fa977c6 | |
parent | fa55a74033f8fbabd9052139e44caf4164f313f0 (diff) | |
download | nextcloud-server-928f22052f3fb52c78c91e5c993702ab673c0dc6.tar.gz nextcloud-server-928f22052f3fb52c78c91e5c993702ab673c0dc6.zip |
chore: remove unnecessary php import during refactor
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | lib/public/Security/ISecureRandom.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/public/Security/ISecureRandom.php b/lib/public/Security/ISecureRandom.php index a8ce92daad8..188236dd3f9 100644 --- a/lib/public/Security/ISecureRandom.php +++ b/lib/public/Security/ISecureRandom.php @@ -8,8 +8,6 @@ declare(strict_types=1); */ namespace OCP\Security; -use OCP\Security\ISecureRandom; - /** * Class SecureRandom provides a wrapper around the random_int function to generate * secure random strings. For PHP 7 the native CSPRNG is used, older versions do |