Skip to content

Commit

Permalink
fix unset
Browse files Browse the repository at this point in the history
  • Loading branch information
wol-soft committed Apr 21, 2022
1 parent ed3feb7 commit 6751677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/State/WorkflowContainer.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function set(string $key, $value): self

public function unset(string $key): self
{
$this->unset($this->items[$key]);
unset($this->items[$key]);
return $this;
}

Expand Down

0 comments on commit 6751677

Please sign in to comment.