Skip to content

Commit

Permalink
[Serializer] Renamed AbstractEncoder/Normalizer to SerializerAwareEnc…
Browse files Browse the repository at this point in the history
…oder/Normalizer
  • Loading branch information
Seldaek committed May 8, 2011
1 parent 1f8defa commit 89e056b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Expand Up @@ -15,11 +15,11 @@
*/

/**
* Abstract Encoder implementation
* SerializerAware Encoder implementation
*
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
abstract class AbstractEncoder implements SerializerAwareInterface, EncoderInterface
abstract class SerializerAwareEncoder implements SerializerAwareInterface, EncoderInterface
{
protected $serializer;

Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Serializer/Encoder/XmlEncoder.php
Expand Up @@ -20,7 +20,7 @@
* @author John Wards <jwards@whiteoctober.co.uk>
* @author Fabian Vogler <fabian@equivalence.ch>
*/
class XmlEncoder extends AbstractEncoder implements DecoderInterface, NormalizationAwareInterface
class XmlEncoder extends SerializerAwareEncoder implements DecoderInterface, NormalizationAwareInterface
{
private $dom;
private $format;
Expand Down
Expand Up @@ -16,7 +16,7 @@
/**
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
class CustomNormalizer extends AbstractNormalizer
class CustomNormalizer implements NormalizerInterface
{
/**
* {@inheritdoc}
Expand Down
Expand Up @@ -33,7 +33,7 @@
*
* @author Nils Adermann <naderman@naderman.de>
*/
class GetSetMethodNormalizer extends AbstractNormalizer
class GetSetMethodNormalizer extends SerializerAwareNormalizer
{
/**
* {@inheritdoc}
Expand Down
Expand Up @@ -15,11 +15,11 @@
*/

/**
* Abstract Normalizer implementation
* SerializerAware Normalizer implementation
*
* @author Jordi Boggiano <j.boggiano@seld.be>
*/
abstract class AbstractNormalizer implements SerializerAwareInterface, NormalizerInterface
abstract class SerializerAwareNormalizer implements SerializerAwareInterface, NormalizerInterface
{
protected $serializer;

Expand Down

0 comments on commit 89e056b

Please sign in to comment.