Skip to content

[12.x] remove extra spaces #10182

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fortify.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class User extends Authenticatable
{
use Notifiable, TwoFactorAuthenticatable;
}
```
```

Next, you should build a screen within your application where users can manage their two factor authentication settings. This screen should allow the user to enable and disable two factor authentication, as well as regenerate their two factor authentication recovery codes.

Expand Down
4 changes: 2 additions & 2 deletions migrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ php artisan migrate:rollback --step=5

You may roll back a specific "batch" of migrations by providing the `batch` option to the `rollback` command, where the `batch` option corresponds to a batch value within your application's `migrations` database table. For example, the following command will roll back all migrations in batch three:

```shell
```shell
php artisan migrate:rollback --batch=3
```
```

If you would like to see the SQL statements that will be executed by the migrations without actually running them, you may provide the `--pretend` flag to the `migrate:rollback` command:

Expand Down