<?php

namespace LoftyIDX\includes\providers;

defined('ABSPATH') || exit;

/**
 * Providers are responsible for registering services with the container
 * via the register method. The register method should be a place to
 * register all services and delegates that the provider needs to function.
 */
interface LoftyIDXBaseProvider
{
  public function register();
}
