GhostManSec
Server: Apache
System: Linux webm019.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: exhehbu (1008962)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/exhehbu/www/wp-content/plugins/gravityforms/includes/class-gf-service-provider.php
<?php

namespace Gravity_Forms\Gravity_Forms;

/**
 * Class GF_Service_Provider
 *
 * An abstraction which provides a contract for defining Service Providers. Service Providers facilitate
 * organizing Services into discreet modules, as opposed to having to register each service in a single location.
 *
 * @since 2.5
 *
 * @package Gravity_Forms\Gravity_Forms
 */
abstract class GF_Service_Provider {

	/**
	 * Register new services to the Service Container.
	 *
	 * @param GF_Service_Container $container
	 *
	 * @return void
	 */
	abstract public function register( GF_Service_Container $container );

	/**
	 * Noop by default - used to initialize hooks and filters for the given module.
	 */
	public function init( GF_Service_Container $container ) {}

}