Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 9c8438c

Browse files
committed
Small doc tweaks
1 parent 1a4d546 commit 9c8438c

File tree

3 files changed

+9
-10
lines changed

3 files changed

+9
-10
lines changed

src/Config/auth.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -185,17 +185,16 @@
185185
| Password Sync
186186
|--------------------------------------------------------------------------
187187
|
188-
| The password sync option allows you to automatically synchronize
189-
| users AD passwords to your local database. These passwords are
190-
| hashed natively by Laravel using the bcrypt() method.
188+
| The password sync option allows you to automatically synchronize users
189+
| LDAP passwords to your local database. These passwords are hashed
190+
| natively by Laravel using the bcrypt() method.
191191
|
192-
| Enabling this option would also allow users to login to their
193-
| accounts using the password last used when an AD connection
194-
| was present.
192+
| Enabling this option would also allow users to login to their accounts
193+
| using the password last used when an LDAP connection was present.
195194
|
196195
| If this option is disabled, the local database account is applied a
197196
| random 16 character hashed password upon every login, and will
198-
| lose access to this account upon loss of AD connectivity.
197+
| lose access to this account upon loss of LDAP connectivity.
199198
|
200199
| This option must be true or false and is only applicable
201200
| to the DatabaseUserProvider.

src/Events/Importing.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
class Importing
99
{
1010
/**
11-
* The user being synchronized.
11+
* The user being imported.
1212
*
1313
* @var User
1414
*/
1515
public $user;
1616

1717
/**
18-
* The model belonging to the user being synchronized.
18+
* The model belonging to the user being imported.
1919
*
2020
* @var Model
2121
*/

src/Events/Synchronized.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Synchronized
1515
public $user;
1616

1717
/**
18-
* The LDAP users database model.
18+
* The LDAP users database model that was synchronized.
1919
*
2020
* @var Model
2121
*/

0 commit comments

Comments
 (0)