remove unnecessary indentation

This commit is contained in:
Samuel Štancl 2023-09-14 17:01:40 +02:00 committed by GitHub
parent f266bb0f4c
commit 691f6c491d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,7 +27,7 @@ In Livewire 3, the configuration key `middleware_group` has been removed, so ins
```php
public function boot(): void
{
...
// ...
Livewire::setUpdateRoute(function ($handle) {
return Route::post('/livewire/update', $handle)
@ -38,7 +38,6 @@ public function boot(): void
);
});
}
```
(Don't forget to import the middleware class.)