1 | <?php |
||
31 | class SerializerHelper extends Helper |
||
32 | { |
||
33 | protected $serializer; |
||
34 | |||
35 | public function getName() |
||
39 | |||
40 | public function __construct(SerializerInterface $serializer) |
||
44 | |||
45 | /** |
||
46 | * @param mixed $object |
||
47 | * @param string $type |
||
48 | * @return string Serialized data |
||
49 | */ |
||
50 | public function serialize($object, $type = 'json') |
||
54 | } |
||
55 |