/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ObjectMapper/Tests/Fixtures/ServiceLoadedValue/LoadedValueService.php
29 строк
607 B
soyuka
[ObjectMapper] bypass lazy ghost with class transform
20 ноя 2025, 10:05
20 ноя 2025, 10:05
6dfe8b7
Код
Авторство
О чём код?
<?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\ObjectMapper\Tests\Fixtures\ServiceLoadedValue; class LoadedValueService { public function __construct(private ?LoadedValue $value = null) { } public function load(): void { $this->value = new LoadedValue(name: 'loaded'); } public function get(): LoadedValue { return $this->value; } }