Skip to content

Commit 4488f3c

Browse files
committed
Make sure interface extends parent interface.
1 parent 31e51ce commit 4488f3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Node/NaryNodeInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Interface NaryNodeInterface.
1111
*/
12-
interface NaryNodeInterface
12+
interface NaryNodeInterface extends NodeInterface
1313
{
1414
/**
1515
* Get the node capacity.

src/Node/ValueNodeInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Interface ValueNodeInterface.
99
*/
10-
interface ValueNodeInterface extends NodeInterface
10+
interface ValueNodeInterface extends NaryNodeInterface
1111
{
1212
/**
1313
* Get the value property.

0 commit comments

Comments
 (0)