diff options
Diffstat (limited to 'assets/php/vendor/symfony/http-foundation/File/Stream.php')
-rwxr-xr-x | assets/php/vendor/symfony/http-foundation/File/Stream.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/assets/php/vendor/symfony/http-foundation/File/Stream.php b/assets/php/vendor/symfony/http-foundation/File/Stream.php deleted file mode 100755 index 69ae74c..0000000 --- a/assets/php/vendor/symfony/http-foundation/File/Stream.php +++ /dev/null @@ -1,28 +0,0 @@ -<?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} - */ - public function getSize() - { - return false; - } -} |