Skip to content

Commit 019fc97

Browse files
committed
docs: add empty lines
1 parent 405592e commit 019fc97

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/user_management/managing_users.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ Since Shield uses a more complex user setup than many other systems, separating
66

77
### Creating Users
88

9-
By default, the only values stored in the users table is the username. The first step is to create the user record with the username. If you don't have a username, be sure to set the value to `null` anyway, so that it passes CodeIgniter's empty data check.
9+
By default, the only values stored in the users table is the username.
10+
11+
The first step is to create the user record with the username. If you don't have a username, be sure to set the value to `null` anyway, so that it passes CodeIgniter's empty data check.
1012

1113
```php
1214
use CodeIgniter\Shield\Entities\User;
@@ -30,7 +32,9 @@ $users->addToDefaultGroup($user);
3032

3133
### Deleting Users
3234

33-
A user's data can be spread over a few different tables so you might be concerned about how to delete all of the user's data from the system. This is handled automatically at the database level for all information that Shield knows about, through the `onCascade` settings of the table's foreign keys. You can delete a user like any other entity.
35+
A user's data can be spread over a few different tables so you might be concerned about how to delete all of the user's data from the system. This is handled automatically at the database level for all information that Shield knows about, through the `onCascade` settings of the table's foreign keys.
36+
37+
You can delete a user like any other entity.
3438

3539
```php
3640
// Get the User Provider (UserModel by default)

0 commit comments

Comments
 (0)