1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\GraphNavigator\Factory;
6
7use JMS\Serializer\GraphNavigatorInterface;
8
9interface GraphNavigatorFactoryInterface
10{
11    public function getGraphNavigator(): GraphNavigatorInterface;
12}
13