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