bug #22426 [PropertyInfo] Prevent returning int values in some cases (dunglas)

This PR was merged into the 2.8 branch.

Discussion
----------

[PropertyInfo] Prevent returning int values in some cases

| Q             | A
| ------------- | ---
| Branch?       | 2.8
| Bug fix?      | yes
| New feature?  | no <!-- don't forget updating src/**/CHANGELOG.md files -->
| BC breaks?    | no
| Deprecations? | no <!-- don't forget updating UPGRADE-*.md files -->
| Tests pass?   | yes
| Fixed tickets | api-platform/api-platform#282, api-platform/core#1055
| License       | MIT
| Doc PR        | n/a

PHP automatically converts array keys to an int if and only if it looks like an int... When a getter looks like `get123`, the ReflectionExtractor returns an array containing an int instead of a string. This PR fixes this.

Commits
-------

b190ec241e [PropertyInfo] Prevent returning int values in some cases.
This commit is contained in:
Fabien Potencier 2017-04-13 13:02:28 -07:00
commit f3eaa78a8e
3 changed files with 9 additions and 4 deletions

View File

@ -64,7 +64,7 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
$properties = array();
foreach ($reflectionClass->getProperties(\ReflectionProperty::IS_PUBLIC) as $reflectionProperty) {
$properties[$reflectionProperty->name] = true;
$properties[$reflectionProperty->name] = $reflectionProperty->name;
}
foreach ($reflectionClass->getMethods(\ReflectionMethod::IS_PUBLIC) as $reflectionMethod) {
@ -79,10 +79,10 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
if (!$reflectionClass->hasProperty($propertyName) && !preg_match('/^[A-Z]{2,}/', $propertyName)) {
$propertyName = lcfirst($propertyName);
}
$properties[$propertyName] = true;
$properties[$propertyName] = $propertyName;
}
return array_keys($properties);
return array_values($properties);
}
/**

View File

@ -32,7 +32,7 @@ class ReflectionExtractorTest extends TestCase
public function testGetProperties()
{
$this->assertEquals(
$this->assertSame(
array(
'bal',
'parent',
@ -49,6 +49,7 @@ class ReflectionExtractorTest extends TestCase
'a',
'DOB',
'Id',
'123',
'c',
'd',
'e',

View File

@ -116,4 +116,8 @@ class Dummy extends ParentDummy
public function getId()
{
}
public function get123()
{
}
}