Skip to content

Commit 62d4c8c

Browse files
committed
minor #51150 Use Stringable interface as much as possible (VincentLanglet)
This PR was squashed before being merged into the 6.4 branch. Discussion ---------- Use Stringable interface as much as possible | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tickets | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead --> | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> Instead of requiring `__toString()` in interfaces, wouldn't it be better to extend `\Stringable` ? (I kept the method when comment was added) Commits ------- 43a7704636 Use Stringable interface as much as possible
2 parents 6f24128 + b3d3fce commit 62d4c8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

HeaderBag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* @implements \IteratorAggregate<string, list<string|null>>
2020
*/
21-
class HeaderBag implements \IteratorAggregate, \Countable
21+
class HeaderBag implements \IteratorAggregate, \Countable, \Stringable
2222
{
2323
protected const UPPER = '_ABCDEFGHIJKLMNOPQRSTUVWXYZ';
2424
protected const LOWER = '-abcdefghijklmnopqrstuvwxyz';

0 commit comments

Comments
 (0)