Skip to content

Commit 97cbe03

Browse files
zerodaherogithub-actions[bot]
authored andcommitted
Fix styling
1 parent 5b645c7 commit 97cbe03

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MarkingStores/EloquentMarkingStore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace ZeroDaHero\LaravelWorkflow\MarkingStores;
44

5-
use Symfony\Component\Translation\Exception\LogicException;
65
use Symfony\Component\Workflow\Marking;
6+
use Symfony\Component\Translation\Exception\LogicException;
77
use Symfony\Component\Workflow\MarkingStore\MarkingStoreInterface;
88

99
/*
@@ -40,7 +40,7 @@ public function getMarking(object $subject): Marking
4040

4141
if ($this->singleState) {
4242
$marking = [(string) $marking => 1];
43-
} else if (!\is_array($marking)) {
43+
} elseif (! \is_array($marking)) {
4444
throw new LogicException(sprintf('The marking stored in "%s::$%s" is not an array and the Workflow\'s Marking store is instantiated with $singleState=false.', get_debug_type($subject), $this->property));
4545
}
4646

0 commit comments

Comments
 (0)