DependencyInjection
1 year ago
Extractor
1 year ago
PhpStan
1 year ago
Util
1 year ago
CHANGELOG.md
1 year ago
LICENSE
1 year ago
PropertyAccessExtractorInterface.php
1 year ago
PropertyDescriptionExtractorInterface.php
1 year ago
PropertyInfoCacheExtractor.php
1 year ago
PropertyInfoExtractor.php
1 year ago
PropertyInfoExtractorInterface.php
1 year ago
PropertyInitializableExtractorInterface.php
1 year ago
PropertyListExtractorInterface.php
1 year ago
PropertyReadInfo.php
1 year ago
PropertyReadInfoExtractorInterface.php
1 year ago
PropertyTypeExtractorInterface.php
1 year ago
PropertyWriteInfo.php
1 year ago
PropertyWriteInfoExtractorInterface.php
1 year ago
README.md
1 year ago
Type.php
1 year ago
composer.json
1 year ago
PropertyReadInfoExtractorInterface.php
26 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | |
| 12 | namespace Symfony\Component\PropertyInfo; |
| 13 | |
| 14 | /** |
| 15 | * Extract read information for the property of a class. |
| 16 | * |
| 17 | * @author Joel Wurtz <jwurtz@jolicode.com> |
| 18 | */ |
| 19 | interface PropertyReadInfoExtractorInterface |
| 20 | { |
| 21 | /** |
| 22 | * Get read information object for a given property of a class. |
| 23 | */ |
| 24 | public function getReadInfo(string $class, string $property, array $context = []): ?PropertyReadInfo; |
| 25 | } |
| 26 |