integrations[ $key ] = $class_or_object; } /** * Integrate each integration by calling the method that does the add_action() and add_filter() calls. * * @since 2.6.0 * * @return void */ public function integrate(): void { foreach ( $this->integrations as $integration ) { $integration->integrate(); } } }