File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 16
16
*
17
17
* @author Fabien Potencier <fabien@symfony.com>
18
18
*
19
- * @implements \IteratorAggregate<string, array<int, string|null>>
19
+ * @implements \IteratorAggregate<string, list< string|null>>
20
20
*/
21
21
class HeaderBag implements \IteratorAggregate, \Countable
22
22
{
23
23
protected const UPPER = '_ABCDEFGHIJKLMNOPQRSTUVWXYZ ' ;
24
24
protected const LOWER = '-abcdefghijklmnopqrstuvwxyz ' ;
25
25
26
26
/**
27
- * @var array<string, array<int, string|null>>
27
+ * @var array<string, list< string|null>>
28
28
*/
29
29
protected $ headers = [];
30
30
protected $ cacheControl = [];
@@ -255,7 +255,7 @@ public function removeCacheControlDirective(string $key)
255
255
/**
256
256
* Returns an iterator for headers.
257
257
*
258
- * @return \ArrayIterator<string, array<int, string|null>>
258
+ * @return \ArrayIterator<string, list< string|null>>
259
259
*/
260
260
#[\ReturnTypeWillChange]
261
261
public function getIterator ()
You can’t perform that action at this time.
0 commit comments