Slide 44
Slide 44 text
public static function getSubscribingMethods()
{
return [
[
'direction' =>
GraphNavigator::DIRECTION_SERIALIZATION,
'format' => ‘json',
'type' => ‘AppBundle\MyClass’,
'method' => ‘serialize',
],
[
'direction' =>
GraphNavigator::DIRECTION_DESERIALIZATION,
'format' => ‘json',
'type' => ‘AppBundle\MyClass',
'method' => ‘deserialize',
],
];
}