Chris@14: Chris@14: * Chris@14: * For the full copyright and license information, please view the LICENSE Chris@14: * file that was distributed with this source code. Chris@14: */ Chris@14: Chris@14: namespace Symfony\Component\HttpFoundation\File; Chris@14: Chris@14: /** Chris@14: * A PHP stream of unknown size. Chris@14: * Chris@14: * @author Nicolas Grekas Chris@14: */ Chris@14: class Stream extends File Chris@14: { Chris@14: /** Chris@14: * {@inheritdoc} Chris@14: */ Chris@14: public function getSize() Chris@14: { Chris@14: return false; Chris@14: } Chris@14: }