This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/PropertyInfo
insekticid 2fe1631be8 Allow Upper Case property names
ReflectionExtractor::getProperties() returns $id instead of $Id. It is bad naming convention, but is possible

```
class Entity {
    protected $Id;

    public function getId()
    {
        return $this->Id;
    }
}
```

# Conflicts:
#	src/Symfony/Component/PropertyInfo/Tests/Extractors/ReflectionExtractorTest.php
#	src/Symfony/Component/PropertyInfo/Tests/Fixtures/Dummy.php
2017-04-04 08:07:48 -07:00
..
Extractor Allow Upper Case property names 2017-04-04 08:07:48 -07:00
Tests Allow Upper Case property names 2017-04-04 08:07:48 -07:00
composer.json add composer exclude-from-classmap for new 2.8 components 2015-11-24 23:11:35 +01:00
LICENSE updated LICENSE year 2017-01-02 12:30:51 -08:00
phpunit.xml.dist [PhpUnit] Auto-register SymfonyTestsListener 2015-10-11 10:29:26 +02:00
PropertyAccessExtractorInterface.php [PropertyInfo] Import the component 2015-09-26 09:46:20 +02:00
PropertyDescriptionExtractorInterface.php [PropertyInfo] Import the component 2015-09-26 09:46:20 +02:00
PropertyInfoExtractor.php fixed CS 2017-01-21 08:59:38 -08:00
PropertyInfoExtractorInterface.php [PropertyInfo] Import the component 2015-09-26 09:46:20 +02:00
PropertyListExtractorInterface.php [PropertyInfo] Import the component 2015-09-26 09:46:20 +02:00
PropertyTypeExtractorInterface.php [PropertyInfo] Import the component 2015-09-26 09:46:20 +02:00
README.md [2.8] update readme files for new components 2016-03-07 11:26:54 +01:00
Type.php fixed @return when returning this or static 2016-12-27 11:52:11 +01:00

PropertyInfo Component

PropertyInfo extracts information about PHP class' properties using metadata of popular sources.

Resources