FrameworkServiceProvider
.. php:class:: FastForward\Framework\ServiceProvider\FrameworkServiceProviderAggregates all core service providers required to initialize the application container.
Usage:
use FastForward\Framework\ServiceProvider\FrameworkServiceProvider;
use FastForward\Container\Container;
$container = new Container([
new FrameworkServiceProvider(),
]);
Constructor:
.. php:method:: __construct()Initializes the aggregate service provider with all essential framework service providers (e.g., HTTP, logging, caching, etc.).
Extends: