/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/PropertyInfo/PropertyReadInfoExtractorInterface.php
25 строк
632 B
Baptiste Leduc
Rebase, fix tests, review & update CHANGELOG
28 янв 2020, 12:54
Не верифицирован
28 янв 2020, 12:54
0a92dab
Код
Авторство
О чём код?
<?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\PropertyInfo; /** * Extract read information for the property of a class. * * @author Joel Wurtz <jwurtz@jolicode.com> */ interface PropertyReadInfoExtractorInterface { /** * Get read information object for a given property of a class. */ public function getReadInfo(string $class, string $property, array $context = []): ?PropertyReadInfo; }