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