Skip to content

Commit d058219

Browse files
committed
Merge branch '2.3' into 2.5
* 2.3: fix phpdoc's alignment Minor phpcs fixes [ClassLoader] Fix undefined index in ClassCollectionLoader Conflicts: src/Symfony/Component/Serializer/Encoder/XmlEncoder.php
2 parents f7dc755 + e15a45b commit d058219

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

Encoder/XmlEncoder.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,17 +117,17 @@ public function decode($data, $format, array $context = array())
117117
return $data;
118118
}
119119

120-
/**
121-
* {@inheritdoc}
122-
*/
120+
/**
121+
* {@inheritdoc}
122+
*/
123123
public function supportsEncoding($format)
124124
{
125125
return 'xml' === $format;
126126
}
127127

128128
/**
129-
* {@inheritdoc}
130-
*/
129+
* {@inheritdoc}
130+
*/
131131
public function supportsDecoding($format)
132132
{
133133
return 'xml' === $format;

Tests/Normalizer/TestDenormalizer.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
class TestDenormalizer implements DenormalizerInterface
2222
{
2323
/**
24-
* {@inheritdoc}
25-
*/
24+
* {@inheritdoc}
25+
*/
2626
public function denormalize($data, $class, $format = null, array $context = array())
2727
{
2828
}
2929

3030
/**
31-
* {@inheritdoc}
32-
*/
31+
* {@inheritdoc}
32+
*/
3333
public function supportsDenormalization($data, $type, $format = null)
3434
{
3535
return true;

Tests/Normalizer/TestNormalizer.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
class TestNormalizer implements NormalizerInterface
2222
{
2323
/**
24-
* {@inheritdoc}
25-
*/
24+
* {@inheritdoc}
25+
*/
2626
public function normalize($object, $format = null, array $context = array())
2727
{
2828
}
2929

3030
/**
31-
* {@inheritdoc}
32-
*/
31+
* {@inheritdoc}
32+
*/
3333
public function supportsNormalization($data, $format = null)
3434
{
3535
return true;

0 commit comments

Comments
 (0)