12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Symfony\Component\PropertyInfo;
- interface PropertyDescriptionExtractorInterface
- {
-
- public function getShortDescription(string $class, string $property, array $context = []);
-
- public function getLongDescription(string $class, string $property, array $context = []);
- }
|