|
@@ -1,19 +1,20 @@
|
|
|
<?php
|
|
|
|
|
|
-namespace Symfony\Component\HttpFoundation\File;
|
|
|
-
|
|
|
-use Symfony\Component\HttpFoundation\File\Exception\FileException;
|
|
|
-use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
|
|
|
-use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser;
|
|
|
-
|
|
|
/*
|
|
|
* This file is part of the Symfony package.
|
|
|
+ *
|
|
|
* (c) Fabien Potencier <fabien.potencier@symfony-project.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;
|
|
|
+
|
|
|
+use Symfony\Component\HttpFoundation\File\Exception\FileException;
|
|
|
+use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
|
|
|
+use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser;
|
|
|
+
|
|
|
/**
|
|
|
* A file in the file system
|
|
|
*
|