Skip to content

Commit e5ae83d

Browse files
committed
Update links
1 parent 9565591 commit e5ae83d

File tree

8 files changed

+14
-11
lines changed

8 files changed

+14
-11
lines changed

docs/authentication.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ the auth / request.auth objects in your Security Rules:
7070
7171
.. note::
7272
This library uses `lcobucci/jwt <https://github.com/lcobucci/jwt>`_ to work with JSON Web Tokens (JWT).
73-
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/.
73+
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/en/stable/.
7474

7575
.. _verify-a-firebase-id-token:
7676

@@ -124,7 +124,7 @@ Parameter Type Description
124124

125125
.. note::
126126
This library uses `lcobucci/jwt <https://github.com/lcobucci/jwt>`_ to work with JSON Web Tokens (JWT).
127-
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/.
127+
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/en/stable/.
128128

129129

130130
***************************
@@ -369,7 +369,7 @@ Parameter Type Description
369369

370370
.. note::
371371
This library uses `lcobucci/jwt <https://github.com/lcobucci/jwt>`_ to work with JSON Web Tokens (JWT).
372-
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/.
372+
You can find the usage instructions at https://lcobucci-jwt.readthedocs.io/en/stable/.
373373

374374
****************
375375
Tenant Awareness

docs/cloud-firestore.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Before you start, please read about Firestore in the official documentation:
2222

2323
- `Official Documentation <https://firebase.google.com/docs/firestore/>`_
2424
- `google/cloud-firestore on GitHub <https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/firestore>`_
25-
- `PHP API Documentation <https://cloud.google.com/php/docs/reference/cloud-storage/latest>`_
25+
- `PHP API Documentation <https://docs.cloud.google.com/php/docs/reference/cloud-storage/latest>`_
2626
- `PHP Usage Examples <https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/firestore>`_
2727

2828
************************************

docs/cloud-storage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Before you start, please read about Firebase Cloud Storage in the official docum
1212

1313
- `Firebase Cloud Storage <https://firebase.google.com/docs/storage/>`_
1414
- `Introduction to the Admin Cloud Storage API <https://firebase.google.com/docs/storage/admin/start>`_
15-
- `PHP API Documentation <https://cloud.google.com/php/docs/reference/cloud-storage/latest>`_
15+
- `PHP API Documentation <https://docs.cloud.google.com/php/docs/reference/cloud-storage/latest>`_
1616
- `PHP Usage examples <https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/storage>`_
1717

1818
**********************************

docs/user-management.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ You can handle both cases with the SDK:
495495
it can also be abused by malicious actors to discover the email addresses registered by your users.
496496

497497
To mitigate this risk, Firebase recommends you
498-
`enable email enumeration protection <https://cloud.google.com/identity-platform/docs/admin/email-enumeration-protection>`_
498+
`enable email enumeration protection <https://docs.cloud.google.com/identity-platform/docs/admin/email-enumeration-protection>`_
499499
for your project using the Google Cloud ``gcloud`` tool. Note that enabling this feature changes
500500
Firebase Authentication's error reporting behavior: be sure your app doesn't rely on the more specific errors.
501501

lychee.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ exclude = [
1313
'^https://codecov.io',
1414
'^https://firebase-php\.readthedocs\.io/?$',
1515
'^https://github.com/pulls',
16-
'^https://stackoverflow.com' # Since recently returns a 403 for some reason
16+
'^https://stackoverflow.com', # Since recently returns a 403 for some reason
17+
'^https://console.firebase.google.com',
18+
'^https://jb.gg',
19+
'^https://picsum.photos',
1720
]
1821

1922
exclude_path = [

src/Firebase/Contract/Auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ public function signInWithEmailAndOobCode(Stringable|string $email, string $oobC
437437
public function signInAnonymously(): SignInResult;
438438

439439
/**
440-
* @see https://cloud.google.com/identity-platform/docs/reference/rest/v1/accounts/signInWithIdp
440+
* @see https://docs.cloud.google.com/identity-platform/docs/reference/rest/v1/accounts/signInWithIdp
441441
*
442442
* @param Stringable|non-empty-string $provider
443443
* @param non-empty-string $accessToken

src/Firebase/Contract/RemoteConfig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* The Firebase Remote Config.
1818
*
19-
* @see https://firebase.google.com/docs/remote-config/use-config-rest
19+
* @see https://firebase.google.com/docs/remote-config/automate-rc
2020
* @see https://firebase.google.com/docs/reference/remote-config/rest
2121
*
2222
* @phpstan-import-type RemoteConfigTemplateShape from Template

src/Firebase/Messaging/ApnsConfig.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
use function array_key_exists;
1212

1313
/**
14-
* @see https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/generating_a_remote_notification
15-
* @see https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns
14+
* @see https://developer.apple.com/documentation/usernotifications/generating-a-remote-notification
15+
* @see https://developer.apple.com/documentation/usernotifications/sending-notification-requests-to-apns
1616
* @see https://firebase.google.com/docs/reference/fcm/rest/v1/projects.messages#apnsconfig
1717
*
1818
* @phpstan-type ApnsConfigShape array{

0 commit comments

Comments
 (0)