FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Integrations
/
LearnDashGroup
Edit File: LearnDashGroupServiceProvider.php
<?php namespace SureCart\Integrations\LearnDashGroup; use SureCartCore\ServiceProviders\ServiceProviderInterface; /** * Handles the learnDash Group Service. */ class LearnDashGroupServiceProvider implements ServiceProviderInterface { /** * Register all dependencies in the IoC container. * * @param \Pimple\Container $container Service container. * @return void */ public function register( $container ) { $container['surecart.learndash.group'] = function () { return new LearnDashGroupService(); }; } /** * Bootstrap the service * * @param \Pimple\Container $container Service Container. */ public function bootstrap( $container ) { $container['surecart.learndash.group']->bootstrap(); } }
Save
Back