Skip to content

Commit 85b6880

Browse files
committed
Use imported class names
1 parent 1556b84 commit 85b6880

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Firebase/Contract/Auth.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
use Kreait\Firebase\Exception\Auth\RevokedSessionCookie;
2626
use Kreait\Firebase\Exception\Auth\UserDisabled;
2727
use Kreait\Firebase\Exception\Auth\UserNotFound;
28-
use Kreait\Firebase\Request;
2928
use Kreait\Firebase\Request\CreateUser;
3029
use Kreait\Firebase\Request\UpdateUser;
3130
use Lcobucci\JWT\Token;
@@ -82,7 +81,7 @@ public function listUsers(int $maxResults = 1000, int $batchSize = 1000): Traver
8281
/**
8382
* Creates a new user with the provided properties.
8483
*
85-
* @param array<non-empty-string, mixed>|Request\CreateUser $properties
84+
* @param array<non-empty-string, mixed>|CreateUser $properties
8685
*
8786
* @throws Exception\AuthException
8887
* @throws Exception\FirebaseException
@@ -92,7 +91,7 @@ public function createUser(array|CreateUser $properties): UserRecord;
9291
/**
9392
* Updates the given user with the given properties.
9493
*
95-
* @param non-empty-array<non-empty-string, mixed>|Request\UpdateUser $properties
94+
* @param non-empty-array<non-empty-string, mixed>|UpdateUser $properties
9695
*
9796
* @throws Exception\AuthException
9897
* @throws Exception\FirebaseException

0 commit comments

Comments
 (0)