/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ObjectMapper/Tests/Fixtures/ClassMap/CostRequestWithSourceView.php
12 строк
253 B
Ryan RAJKOMAR
[ObjectMapper] Allow class FQDN arrays as TargetClass and SourceClass param
06 мар 2026, 18:16
06 мар 2026, 18:16
bf07ee6
Код
Авторство
О чём код?
<?php namespace Symfony\Component\ObjectMapper\Tests\Fixtures\ClassMap; use Symfony\Component\ObjectMapper\Attribute\Map; #[Map(source: Cost::class)] final class CostRequestWithSourceView { #[Map(source: 'bar')] public ?string $foo = null; }