Skip to content

Commit

Permalink
Don't use null for unset()
Browse files Browse the repository at this point in the history
Revert cs-fixer changes.  Fixed mb-wrapper config
  • Loading branch information
phpfui committed Oct 2, 2023
1 parent 875ba70 commit 48b137a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stream/MessagePartStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function update(SplSubject $subject) : void
{
if ($this->appendStream !== null) {
// unset forces recreation in StreamDecoratorTrait with a call to __get
$this->stream = null;
unset($this->stream);
$this->appendStream = null;
}
}
Expand Down

0 comments on commit 48b137a

Please sign in to comment.