Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Changes | 0 |
1 | <?php |
||
42 | public function config() |
||
43 | { |
||
44 | return [ |
||
45 | 'fromType' => 'RootQuery', |
||
46 | 'toType' => 'Price', |
||
47 | 'fromFieldName' => 'prices', |
||
48 | 'connectionTypeName' => 'RootQueryPricesConnection', |
||
49 | 'connectionArgs' => TicketPricesConnection::get_connection_args(), |
||
50 | 'resolve' => [$this, 'resolveConnection'], |
||
51 | 'resolveNode' => [$this, 'resolveNode'] |
||
52 | ]; |
||
53 | } |
||
54 | |||
70 |