Skip to content

Commit e15a45b

Browse files
committed
fix phpdoc's alignment
1 parent 2e05093 commit e15a45b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Encoder/XmlEncoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function decode($data, $format, array $context = array())
114114
return $this->parseXml($xml);
115115
}
116116

117-
/**
117+
/**
118118
* Checks whether the serializer can encode to given format
119119
*
120120
* @param string $format format name

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)