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