Skip to content

Commit 79f153b

Browse files
committed
Update link to the database security rules documentation
1 parent cf2b7c5 commit 79f153b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/Database/RuleSet.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ private function __construct(array $rules)
3232
* to authenticated users of your app. They are useful if you want data open to
3333
* all users of your app but don't want it open to the world.
3434
*
35-
* @see https://firebase.google.com/docs/database/security/quickstart#sample-rules
35+
* @see https://firebase.google.com/docs/database/security
3636
*/
3737
public static function default(): self
3838
{
@@ -52,7 +52,7 @@ public static function default(): self
5252
* This level of access means anyone can read or write to your database. You should
5353
* configure more secure rules before launching your app.
5454
*
55-
* @see https://firebase.google.com/docs/database/security/quickstart#sample-rules
55+
* @see https://firebase.google.com/docs/database/security
5656
*/
5757
public static function public(): self
5858
{
@@ -68,7 +68,7 @@ public static function public(): self
6868
* Private rules disable read and write access to your database by users. With these rules,
6969
* you can only access the database through the Firebase console and an Admin SDK.
7070
*
71-
* @see https://firebase.google.com/docs/database/security/quickstart#sample-rules
71+
* @see https://firebase.google.com/docs/database/security
7272
*/
7373
public static function private(): self
7474
{

0 commit comments

Comments
 (0)