📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-04 03:18:53
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
symfony
/
http-foundation
/
Tests
/
File
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/symfony/http-foundation/Tests/File
🔄 Refresh
✏️
Editing: FakeFile.php
Writable
<?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\Tests\File; use Symfony\Component\HttpFoundation\File\File as OrigFile; class FakeFile extends OrigFile { private string $realpath; public function __construct(string $realpath, string $path) { $this->realpath = $realpath; parent::__construct($path, false); } public function isReadable(): bool { return true; } public function getRealpath(): string { return $this->realpath; } public function getSize(): int { return 42; } public function getMTime(): int { return time(); } }
💾 Save Changes
❌ Cancel