Skip to content

Commit e4c9723

Browse files
committed
Merge branch '2.5' into 2.6
* 2.5: Added information when an error occured during validation of an answer of a question [Console] fixes some typos and phpdoc. fix phpdoc's alignment Minor phpcs fixes [ClassLoader] Fix undefined index in ClassCollectionLoader
2 parents f30ae42 + d058219 commit e4c9723

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
@@ -129,17 +129,17 @@ public function decode($data, $format, array $context = array())
129129
return $data;
130130
}
131131

132-
/**
133-
* {@inheritdoc}
134-
*/
132+
/**
133+
* {@inheritdoc}
134+
*/
135135
public function supportsEncoding($format)
136136
{
137137
return 'xml' === $format;
138138
}
139139

140140
/**
141-
* {@inheritdoc}
142-
*/
141+
* {@inheritdoc}
142+
*/
143143
public function supportsDecoding($format)
144144
{
145145
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)