/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/HttpFoundation/Tests/File/FakeFile.php
45 строк
877 B
Nicolas Grekas
Use typed properties in tests as much as possible
25 июл 2023, 11:53
25 июл 2023, 11:53
4ad506b
Код
Авторство
О чём код?
<?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(); } }