WPINC_class wp comment.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface CommentObjectInterface {
    public static function get_instance( $id );
    public function to_array();
    public function get_children( $args = array() );
    public function add_child( WP_Comment $child );
    public function get_child( $child_id );
    public function populated_children( $set );
}