/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Form/CallbackTransformer.php
34 строки
832 B
Grégoire Pineau
[CS] Remove @inheritdoc PHPDoc
25 авг 2022, 18:27
25 авг 2022, 18:27
015d501
Код
Авторство
О чём код?
<?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\Form; class CallbackTransformer implements DataTransformerInterface { private \Closure $transform; private \Closure $reverseTransform; public function __construct(callable $transform, callable $reverseTransform) { $this->transform = $transform(...); $this->reverseTransform = $reverseTransform(...); } public function transform(mixed $data): mixed { return ($this->transform)($data); } public function reverseTransform(mixed $data): mixed { return ($this->reverseTransform)($data); } }