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

Commit 7fe2145

Browse files
committed
Small doc tweaks
1 parent 5b15913 commit 7fe2145

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/auth/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Adldap\Laravel\AdldapAuthServiceProvider::class,
1313
Publish the auth configuration:
1414

1515
```bash
16-
php artisan vendor:publish --provider="Adldap\Laravel\AdldapAuthServiceProvider"
16+
php artisan vendor:publish --provider "Adldap\Laravel\AdldapAuthServiceProvider"
1717
```
1818

1919
Change the auth driver in `config/auth.php` to `ldap`:

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Then insert the facade alias (if you're going to use it):
3333
Finally, publish the `ldap.php` configuration file by running:
3434

3535
```bash
36-
php artisan vendor:publish --provider="Adldap\Laravel\AdldapServiceProvider"
36+
php artisan vendor:publish --provider "Adldap\Laravel\AdldapServiceProvider"
3737
```
3838

3939
Now you're all set! You're ready to move onto [setup](setup.md).

src/Commands/Import.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ public static function useScope($scope)
4848
/**
4949
* Constructor.
5050
*
51-
* @param User $user
52-
* @param Model $model
51+
* @param User $user The LDAP user being imported.
52+
* @param Model $model The users eloquent model.
5353
*/
5454
public function __construct(User $user, Model $model)
5555
{

src/Config/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@
258258
| Login Fallback
259259
|--------------------------------------------------------------------------
260260
|
261-
| The login fallback option allows you to login as a user located on the
261+
| The login fallback option allows you to login as a user located in the
262262
| local database if active directory authentication fails.
263263
|
264264
| Set this to true if you would like to enable it.

0 commit comments

Comments
 (0)