| 1 | <?php |
||
| 16 | class NodeInterfaceType extends AbstractInterfaceType |
||
| 17 | { |
||
| 18 | |||
| 19 | /** @var FetcherInterface */ //todo: maybe there are better solution |
||
| 20 | protected $fetcher; |
||
| 21 | |||
| 22 | 2 | public function getName() |
|
| 26 | |||
| 27 | public function build($config) |
||
| 31 | |||
| 32 | 1 | public function resolveType($object) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return FetcherInterface |
||
| 43 | */ |
||
| 44 | 2 | public function getFetcher() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @param FetcherInterface $fetcher |
||
| 51 | * |
||
| 52 | * @return NodeInterfaceType |
||
| 53 | */ |
||
| 54 | 2 | public function setFetcher($fetcher) |
|
| 60 | } |
||
| 61 |