/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Config/Tests/Resource/ResourceStub.php
34 строки
721 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\Config\Tests\Resource; use Symfony\Component\Config\Resource\SelfCheckingResourceInterface; class ResourceStub implements SelfCheckingResourceInterface { private bool $fresh = true; public function setFresh(bool $isFresh): void { $this->fresh = $isFresh; } public function __toString(): string { return 'stub'; } public function isFresh(int $timestamp): bool { return $this->fresh; } }