Skip to content

Commit

Permalink
Correctly use function trim;
Browse files Browse the repository at this point in the history
This is a follow-up for #84. This issue apparently was
not detected by the CI and neither during review.

Signed-off-by: Tim Düsterhus <duesterhus@woltlab.com>
  • Loading branch information
TimWolla committed May 4, 2022
1 parent 07475df commit a38c1ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/AbstractSerializer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

use function array_pop;
use function implode;
use function ltrim;
use function preg_match;
use function sprintf;
use function str_replace;
use function trim;
use function ucwords;

/**
Expand Down
1 change: 1 addition & 0 deletions src/MessageTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
use function preg_match;
use function sprintf;
use function strtolower;
use function trim;

/**
* Trait implementing the various methods defined in MessageInterface.
Expand Down

0 comments on commit a38c1ef

Please sign in to comment.