<?php

namespace Symfony\Component\HttpFoundation;

/**
 * @template TValue of string|int|float|bool
 */
final class InputBag extends ParameterBag
{

	/**
	 * @param TValue|null $default
	 * @return TValue|null
	 */
	public function get(string $key, $default = null)
	{

	}

}
