Skip to content

Commit

Permalink
Merge pull request #88 from WoltLab/use-function
Browse files Browse the repository at this point in the history
Correctly `use function trim;`
  • Loading branch information
Ocramius committed May 4, 2022
2 parents 71529f2 + a38c1ef commit 7556371
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
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
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 7556371

Please sign in to comment.