Skip to content

Commit 3233436

Browse files
committed
Merge branch '2.8'
* 2.8: (21 commits) [Security][bugfix] "Remember me" cookie cleared on logout with custom "secure"/"httponly" config options [1] [ci] Use current PHP_BINARY when running ./phpunit Fixed typos [UPGRADE-3.0] fix bullet indentation Throw exception if tempnam returns false in ProcessPipes [DomCrawler] Deprecated using /_root/ in XPath expressions Pass missing request template variables Simplify AbstractVoter [Form] add missing deprecation triggers Throw exception if tempnam returns false Fix PropertyAccessor modifying array in object when array key does not exist [DependencyInjection] Add autowiring capabilities Fixing typo in variable name Add a few additional tests for the Crawler [Form] remove obsolete deprecation comments Updated the style of the event commands [Debug] Deprecate providing $fileLinkFormat as second argument [Form] minor CS fix Updated PHPDoc of the AbstractVoter class [Security] InMemoryUserProvider now concerns whether user's password is changed when refreshing ...
2 parents 3d0a2ec + 964abe4 commit 3233436

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mapping/Loader/AnnotationLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function loadClassMetadata(ClassMetadataInterface $classMetadata)
4949
$attributesMetadata = $classMetadata->getAttributesMetadata();
5050

5151
foreach ($reflectionClass->getProperties() as $property) {
52-
if (!isset($attributeMetadata[$property->name])) {
52+
if (!isset($attributesMetadata[$property->name])) {
5353
$attributesMetadata[$property->name] = new AttributeMetadata($property->name);
5454
$classMetadata->addAttributeMetadata($attributesMetadata[$property->name]);
5555
}

0 commit comments

Comments
 (0)