Files
2026-04-28 15:13:50 +02:00

17 lines
409 B
PHP

<?php
declare(strict_types=1);
namespace WCPay\Vendor\League\Container\ServiceProvider;
interface BootableServiceProviderInterface extends ServiceProviderInterface
{
/**
* Method will be invoked on registration of a service provider implementing
* this interface. Provides ability for eager loading of Service Providers.
*
* @return void
*/
public function boot(): void;
}