vendor/symfony/src/Symfony/Component/Serializer/Encoder/NormalizationAwareInterface.php
equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 namespace Symfony\Component\Serializer\Encoder; |
|
4 |
|
5 use Symfony\Component\Serializer\SerializerInterface; |
|
6 |
|
7 /* |
|
8 * This file is part of the Symfony framework. |
|
9 * |
|
10 * (c) Fabien Potencier <fabien@symfony.com> |
|
11 * |
|
12 * This source file is subject to the MIT license that is bundled |
|
13 * with this source code in the file LICENSE. |
|
14 */ |
|
15 |
|
16 /** |
|
17 * Defines the interface of encoders that will normalize data themselves |
|
18 * |
|
19 * Implementing this interface essentially just tells the Serializer that the |
|
20 * data should not be pre-normalized before being passed to this Encoder. |
|
21 * |
|
22 * @author Jordi Boggiano <j.boggiano@seld.be> |
|
23 */ |
|
24 interface NormalizationAwareInterface |
|
25 { |
|
26 } |