| Current Path : /home/ereika83/www/wp-content/plugins/sfwd-lms/src/Core/Payments/ |
| Current File : /home/ereika83/www/wp-content/plugins/sfwd-lms/src/Core/Payments/Provider.php |
<?php
/**
* LearnDash Payments Provider class.
*
* @since 4.6.0
*
* @package LearnDash\Core
*/
namespace LearnDash\Core\Payments;
use StellarWP\Learndash\lucatume\DI52\ContainerException;
use StellarWP\Learndash\lucatume\DI52\ServiceProvider;
/**
* Service provider class for Stripe.
*
* @since 4.6.0
*/
class Provider extends ServiceProvider {
/**
* Register service providers.
*
* @since 4.6.0
*
* @throws ContainerException If there's an issue while trying to bind the implementation.
*
* @return void
*/
public function register(): void {
// Dear developers, don't register anything here, it will be deprecated and the existing code will be moved to the Payments module folder.
$this->container->register( Stripe\Provider::class );
}
}