/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/PropertyInfo/PropertyDescriptionExtractorInterface.php
30 строк
785 B
Nicolas Grekas
Add return types - batch 5/n
13 авг 2021, 11:15
13 авг 2021, 11:15
00f08e4
Код
Авторство
О чём код?
<?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; /** * Guesses the property's human readable description. * * @author Kévin Dunglas <dunglas@gmail.com> */ interface PropertyDescriptionExtractorInterface { /** * Gets the short description of the property. */ public function getShortDescription(string $class, string $property, array $context = []): ?string; /** * Gets the long description of the property. */ public function getLongDescription(string $class, string $property, array $context = []): ?string; }