| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class NodeInterfaceType extends AbstractInterfaceType |
||
| 10 | { |
||
| 11 | |||
| 12 | use ResolvesTypeTrait; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $typeName; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * NodeInterface constructor. |
||
| 21 | * |
||
| 22 | * @param string $typeName |
||
| 23 | */ |
||
| 24 | public function __construct($typeName) |
||
| 25 | { |
||
| 26 | parent::__construct(); |
||
| 27 | |||
| 28 | $this->typeName = $typeName; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritdoc |
||
| 33 | */ |
||
| 34 | public function build($config) |
||
| 37 | } |
||
| 38 | } |
||
| 39 |