Skip to content

Commit

Permalink
Fix ecs
Browse files Browse the repository at this point in the history
  • Loading branch information
Prometee committed Sep 26, 2024
1 parent a01be0c commit 39a9609
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Abstraction/StateMachine/CompositeStateMachine.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public function getTransitionToState(object $subject, string $graphName, string
return $this->stateMachine->getTransitionToState($subject, $graphName, $toState);
}

public function apply(object $subject, string $graphName, string $transition, array $context = []): void {
public function apply(object $subject, string $graphName, string $transition, array $context = []): void
{
$this->stateMachine->apply($subject, $graphName, $transition, $context);
}
}

0 comments on commit 39a9609

Please sign in to comment.