<?php

namespace Symfony\Component\HttpFoundation;

/**
 * @implements \IteratorAggregate<array-key, mixed>
 */
class ParameterBag implements \IteratorAggregate
{
    /**
     * @return list<array-key>
     */
    public function keys(): array
    {
    }
}
