1
0
Fork 0
mirror of https://github.com/archtechx/money.git synced 2025-12-12 03:14:03 +00:00

Fix syntax highlighting

This commit is contained in:
Samuel Štancl 2021-11-17 20:53:14 +01:00 committed by GitHub
parent ab97f27fd1
commit 9283895769
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -337,7 +337,7 @@ For example, say we want to use the `currency` session key to keep track of the
```php ```php
currencies() currencies()
->storeCurrentUsing(fn (string $code) => session()->put('currency', $code)) ->storeCurrentUsing(fn (string $code) => session()->put('currency', $code))
->resolveCurrentUsing(fn () => session()->get('currency)); ->resolveCurrentUsing(fn () => session()->get('currency'));
``` ```
You can add this code to your AppServiceProvider's `boot()` method. You can add this code to your AppServiceProvider's `boot()` method.