Skip to content

Commit 657384e

Browse files
committed
v1.1
1 parent 783d6a2 commit 657384e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FPNode.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class FPNode
1111
public ?FPNode $parent = null;
1212
public ?FPNode $link = null;
1313
/** @var FPNode[] */
14-
public array $children;
14+
public array $children = [];
1515

1616
/**
1717
* Create the node.
@@ -69,4 +69,4 @@ public function addChild($value): FPNode
6969
$this->children[] = $child;
7070
return $child;
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)