32 lines
566 B
PHP
Raw Normal View History

2021-07-27 14:46:32 +02:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpFoundation\File;
/**
* A PHP stream of unknown size.
*
* @author Nicolas Grekas <p@tchwork.com>
*/
class Stream extends File
{
/**
* {@inheritdoc}
2022-05-03 15:24:29 +02:00
*
* @return int|false
2021-07-27 14:46:32 +02:00
*/
2022-05-03 15:24:29 +02:00
#[\ReturnTypeWillChange]
2021-07-27 14:46:32 +02:00
public function getSize()
{
return false;
}
}