/**
 * Remove a specific child
 *
 * @param   NodeInterface  $child  Child to remove
 *
 * @return  void
 *
 * @since   4.0.0
 */
public function removeChild(NodeInterface $child)
{
    $key = array_search($child, $this->_children);
    unset($this->_children[$key]);
}