Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / league / container / src / ServiceProvider / BootableServiceProviderInterface.php
diff --git a/vendor/league/container/src/ServiceProvider/BootableServiceProviderInterface.php b/vendor/league/container/src/ServiceProvider/BootableServiceProviderInterface.php
new file mode 100644 (file)
index 0000000..580580f
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace 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();
+}