hartmann / magic-property-extractor
Provides property information based on class documentation
Installs: 2 304
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- symfony/property-info: ^4.3
Requires (Dev)
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2025-03-04 23:47:42 UTC
README
This package adds an additional extractor for the symfony/property-info package which is able to
interpret @property
, @property-read
and @property-write
tags documented in the DocComment of a class.
Installation
composer require hartmann/magic-property-extractor
Usage
use Hartmann\PropertyInfo\Extractor\PhpDocMagicExtractor $magicExtractor = new PhpDocMagicExtractor(); $properties = $magicExtractor->getProperties(\Foo::class);
or create a new PropertyInfoExtractor instance and provide it with a set of information extractors
Extractable Information
This Extractor implements the following interfaces:
PropertyDescriptionExtractorInterface
PropertyTypeExtractorInterface
PropertyAccessExtractorInterface
PropertyListExtractorInterface
Planned features
- Support magic accessors and mutators