├── .github └── workflows │ ├── ci.yml │ └── static.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── composer.json ├── phpstan.neon ├── phpstan.tests.neon ├── phpunit.xml.dist ├── src ├── Attribute │ └── Preferred.php ├── Builder.php ├── Exception │ ├── InvalidTypeException.php │ ├── ParseException.php │ ├── RecursionException.php │ └── SchemaException.php ├── Metadata │ ├── AbstractPropertyMetadata.php │ ├── AbstractPropertyType.php │ ├── ClassDiscriminatorMetadata.php │ ├── ClassMetadata.php │ ├── DateTimeOptions.php │ ├── ParameterMetadata.php │ ├── PropertyAccessor.php │ ├── PropertyMetadata.php │ ├── PropertyType.php │ ├── PropertyTypeClass.php │ ├── PropertyTypeDateTime.php │ ├── PropertyTypeIterable.php │ ├── PropertyTypePrimitive.php │ ├── PropertyTypeUnion.php │ ├── PropertyTypeUnknown.php │ └── VersionRange.php ├── ModelParser │ ├── JMSParser.php │ ├── LiipMetadataAttributeParser.php │ ├── ModelParserInterface.php │ ├── NamingStrategy │ │ ├── IdenticalPropertyNamingStrategy.php │ │ ├── PropertyNamingStrategyInterface.php │ │ └── SnakeCasePropertyNamingStrategy.php │ ├── PhpDocParser.php │ ├── RawMetadata │ │ ├── PropertyCollection.php │ │ ├── PropertyVariationMetadata.php │ │ └── RawClassMetadata.php │ ├── ReflectionParser.php │ └── VisibilityAwarePropertyAccessGuesser.php ├── Parser.php ├── PropertyReducer.php ├── RawClassMetadataRegistry.php ├── RecursionChecker.php ├── RecursionContext.php ├── Reducer │ ├── GroupReducer.php │ ├── PreferredReducer.php │ ├── PropertyReducerInterface.php │ ├── TakeBestReducer.php │ └── VersionReducer.php └── TypeParser │ ├── JMSTypeParser.php │ └── PhpTypeParser.php └── tests ├── BuilderTest.php ├── Metadata ├── ClassMetadataTest.php ├── PropertyTypeIterableTest.php ├── PropertyTypeTest.php └── VersionRangeTest.php ├── ModelParser ├── Fixtures │ ├── IntersectionTypeDeclarationModel.php │ ├── TypeDeclarationModel.php │ └── UnionTypeDeclarationModel.php ├── JMSParserTest.php ├── Model │ ├── AbstractModel.php │ ├── BaseDiscriminator.php │ ├── BaseModel.php │ ├── Boat.php │ ├── CabinCruiser.php │ ├── Car.php │ ├── ClassUsingUnionDiscriminator.php │ ├── ClassUsingUnionTyping.php │ ├── ClassWithVehicleProperty.php │ ├── DiscriminatorAuthor.php │ ├── DiscriminatorComment.php │ ├── DiscriminatorWithFieldProperty.php │ ├── Ferry.php │ ├── Moped.php │ ├── Nested.php │ ├── Recursion.php │ ├── ReflectionAbstractModel.php │ ├── ReflectionBaseModel.php │ ├── Vehicle.php │ └── WithImports.php ├── NamingStrategy │ └── SnakeCasePropertyNamingStrategyTest.php ├── PhpDocParserTest.php ├── RawMetadata │ └── RawClassMetadataTest.php ├── ReflectionParserTest.php └── VisibilityAwarePropertyAccessGuesserTest.php ├── ParserTest.php ├── PropertyReducerTest.php ├── RecursionCheckerTest.php ├── RecursionContextTest.php ├── Reducer ├── GroupReducerTest.php ├── TakeBestReducerTest.php └── VersionReducerTest.php ├── TypeParser ├── JMSTypeParserTest.php └── PhpTypeParserTest.php └── bootstrap.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstan.tests.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/phpstan.tests.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Attribute/Preferred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Attribute/Preferred.php -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Exception/InvalidTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Exception/InvalidTypeException.php -------------------------------------------------------------------------------- /src/Exception/ParseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Exception/ParseException.php -------------------------------------------------------------------------------- /src/Exception/RecursionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Exception/RecursionException.php -------------------------------------------------------------------------------- /src/Exception/SchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Exception/SchemaException.php -------------------------------------------------------------------------------- /src/Metadata/AbstractPropertyMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/AbstractPropertyMetadata.php -------------------------------------------------------------------------------- /src/Metadata/AbstractPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/AbstractPropertyType.php -------------------------------------------------------------------------------- /src/Metadata/ClassDiscriminatorMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/ClassDiscriminatorMetadata.php -------------------------------------------------------------------------------- /src/Metadata/ClassMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/ClassMetadata.php -------------------------------------------------------------------------------- /src/Metadata/DateTimeOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/DateTimeOptions.php -------------------------------------------------------------------------------- /src/Metadata/ParameterMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/ParameterMetadata.php -------------------------------------------------------------------------------- /src/Metadata/PropertyAccessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyAccessor.php -------------------------------------------------------------------------------- /src/Metadata/PropertyMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyMetadata.php -------------------------------------------------------------------------------- /src/Metadata/PropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyType.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypeClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypeClass.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypeDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypeDateTime.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypeIterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypeIterable.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypePrimitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypePrimitive.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypeUnion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypeUnion.php -------------------------------------------------------------------------------- /src/Metadata/PropertyTypeUnknown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/PropertyTypeUnknown.php -------------------------------------------------------------------------------- /src/Metadata/VersionRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Metadata/VersionRange.php -------------------------------------------------------------------------------- /src/ModelParser/JMSParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/JMSParser.php -------------------------------------------------------------------------------- /src/ModelParser/LiipMetadataAttributeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/LiipMetadataAttributeParser.php -------------------------------------------------------------------------------- /src/ModelParser/ModelParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/ModelParserInterface.php -------------------------------------------------------------------------------- /src/ModelParser/NamingStrategy/IdenticalPropertyNamingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/NamingStrategy/IdenticalPropertyNamingStrategy.php -------------------------------------------------------------------------------- /src/ModelParser/NamingStrategy/PropertyNamingStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/NamingStrategy/PropertyNamingStrategyInterface.php -------------------------------------------------------------------------------- /src/ModelParser/NamingStrategy/SnakeCasePropertyNamingStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/NamingStrategy/SnakeCasePropertyNamingStrategy.php -------------------------------------------------------------------------------- /src/ModelParser/PhpDocParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/PhpDocParser.php -------------------------------------------------------------------------------- /src/ModelParser/RawMetadata/PropertyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/RawMetadata/PropertyCollection.php -------------------------------------------------------------------------------- /src/ModelParser/RawMetadata/PropertyVariationMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/RawMetadata/PropertyVariationMetadata.php -------------------------------------------------------------------------------- /src/ModelParser/RawMetadata/RawClassMetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/RawMetadata/RawClassMetadata.php -------------------------------------------------------------------------------- /src/ModelParser/ReflectionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/ReflectionParser.php -------------------------------------------------------------------------------- /src/ModelParser/VisibilityAwarePropertyAccessGuesser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/ModelParser/VisibilityAwarePropertyAccessGuesser.php -------------------------------------------------------------------------------- /src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Parser.php -------------------------------------------------------------------------------- /src/PropertyReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/PropertyReducer.php -------------------------------------------------------------------------------- /src/RawClassMetadataRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/RawClassMetadataRegistry.php -------------------------------------------------------------------------------- /src/RecursionChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/RecursionChecker.php -------------------------------------------------------------------------------- /src/RecursionContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/RecursionContext.php -------------------------------------------------------------------------------- /src/Reducer/GroupReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Reducer/GroupReducer.php -------------------------------------------------------------------------------- /src/Reducer/PreferredReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Reducer/PreferredReducer.php -------------------------------------------------------------------------------- /src/Reducer/PropertyReducerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Reducer/PropertyReducerInterface.php -------------------------------------------------------------------------------- /src/Reducer/TakeBestReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Reducer/TakeBestReducer.php -------------------------------------------------------------------------------- /src/Reducer/VersionReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/Reducer/VersionReducer.php -------------------------------------------------------------------------------- /src/TypeParser/JMSTypeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/TypeParser/JMSTypeParser.php -------------------------------------------------------------------------------- /src/TypeParser/PhpTypeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/src/TypeParser/PhpTypeParser.php -------------------------------------------------------------------------------- /tests/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/BuilderTest.php -------------------------------------------------------------------------------- /tests/Metadata/ClassMetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Metadata/ClassMetadataTest.php -------------------------------------------------------------------------------- /tests/Metadata/PropertyTypeIterableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Metadata/PropertyTypeIterableTest.php -------------------------------------------------------------------------------- /tests/Metadata/PropertyTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Metadata/PropertyTypeTest.php -------------------------------------------------------------------------------- /tests/Metadata/VersionRangeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Metadata/VersionRangeTest.php -------------------------------------------------------------------------------- /tests/ModelParser/Fixtures/IntersectionTypeDeclarationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Fixtures/IntersectionTypeDeclarationModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Fixtures/TypeDeclarationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Fixtures/TypeDeclarationModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Fixtures/UnionTypeDeclarationModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Fixtures/UnionTypeDeclarationModel.php -------------------------------------------------------------------------------- /tests/ModelParser/JMSParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/JMSParserTest.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/AbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/AbstractModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/BaseDiscriminator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/BaseDiscriminator.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/BaseModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Boat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Boat.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/CabinCruiser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/CabinCruiser.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Car.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Car.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/ClassUsingUnionDiscriminator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/ClassUsingUnionDiscriminator.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/ClassUsingUnionTyping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/ClassUsingUnionTyping.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/ClassWithVehicleProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/ClassWithVehicleProperty.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/DiscriminatorAuthor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/DiscriminatorAuthor.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/DiscriminatorComment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/DiscriminatorComment.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/DiscriminatorWithFieldProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/DiscriminatorWithFieldProperty.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Ferry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Ferry.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Moped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Moped.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Nested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Nested.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Recursion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Recursion.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/ReflectionAbstractModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/ReflectionAbstractModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/ReflectionBaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/ReflectionBaseModel.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/Vehicle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/Vehicle.php -------------------------------------------------------------------------------- /tests/ModelParser/Model/WithImports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/Model/WithImports.php -------------------------------------------------------------------------------- /tests/ModelParser/NamingStrategy/SnakeCasePropertyNamingStrategyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/NamingStrategy/SnakeCasePropertyNamingStrategyTest.php -------------------------------------------------------------------------------- /tests/ModelParser/PhpDocParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/PhpDocParserTest.php -------------------------------------------------------------------------------- /tests/ModelParser/RawMetadata/RawClassMetadataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/RawMetadata/RawClassMetadataTest.php -------------------------------------------------------------------------------- /tests/ModelParser/ReflectionParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/ReflectionParserTest.php -------------------------------------------------------------------------------- /tests/ModelParser/VisibilityAwarePropertyAccessGuesserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ModelParser/VisibilityAwarePropertyAccessGuesserTest.php -------------------------------------------------------------------------------- /tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/ParserTest.php -------------------------------------------------------------------------------- /tests/PropertyReducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/PropertyReducerTest.php -------------------------------------------------------------------------------- /tests/RecursionCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/RecursionCheckerTest.php -------------------------------------------------------------------------------- /tests/RecursionContextTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/RecursionContextTest.php -------------------------------------------------------------------------------- /tests/Reducer/GroupReducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Reducer/GroupReducerTest.php -------------------------------------------------------------------------------- /tests/Reducer/TakeBestReducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Reducer/TakeBestReducerTest.php -------------------------------------------------------------------------------- /tests/Reducer/VersionReducerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/Reducer/VersionReducerTest.php -------------------------------------------------------------------------------- /tests/TypeParser/JMSTypeParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/TypeParser/JMSTypeParserTest.php -------------------------------------------------------------------------------- /tests/TypeParser/PhpTypeParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/TypeParser/PhpTypeParserTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liip/metadata-parser/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------