Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Reach\Integrations;

use Hostinger\Reach\Repositories\FormRepository;
use WP_Post;

if ( ! defined( 'ABSPATH' ) ) {
    die;
}

abstract class IntegrationWithForms extends Integration {

    public FormRepository $form_repository;

    public function __construct( FormRepository $form_repository ) {
        $this->form_repository = $form_repository;
    }

    abstract public function get_form_ids( WP_Post $post ): array;

    protected function maybe_unset_forms( WP_Post $post ): void {
        $previous_forms    = $this->form_repository->all(
            array(
                'post_id' => $post->ID,
                'type'    => $this->get_name(),
            )
        );
        $previous_form_ids = array_column( $previous_for