From 5eb9abd93e9110913d177426522c17a03ad19b24 Mon Sep 17 00:00:00 2001 From: Marceau Casals Date: Mon, 6 Nov 2023 02:34:02 +0100 Subject: [PATCH] Typo in 01-configuring-states.md - A line break is missing in `use` statements - An invalid `use const` is present --- docs/working-with-states/01-configuring-states.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/working-with-states/01-configuring-states.md b/docs/working-with-states/01-configuring-states.md index 730f842..000a03d 100644 --- a/docs/working-with-states/01-configuring-states.md +++ b/docs/working-with-states/01-configuring-states.md @@ -138,7 +138,8 @@ If you're using PHP 8 or higher, you can also configure your state using attribu ```php use Spatie\ModelStates\Attributes\AllowTransition; -use Spatie\ModelStates\Attributes\RegisterState;use Spatie\ModelStates\State;use const Grpc\STATUS_CANCELLED; +use Spatie\ModelStates\Attributes\RegisterState; +use Spatie\ModelStates\State; #[ AllowTransition(Pending::class, Paid::class),