This package provides additional features for Laravel's Service Container.
Install the package via composer (Laravel 11):
composer require michael-rubel/laravel-enhanced-container
If you need the package for older versions of Laravel, check changelog.
call(ServiceInterface::class, context: static::class);
// The `call` method automatically resolves the implementation from the interface you passed.
// If you pass the context, the proxy tries to resolve contextual binding instead of global binding first.
This feature makes it possible to override the behavior of methods accessed using the call
.
Assuming that is your function in the service class:
class Service
{
public function yourMethod(int $count): int
{
return $count;
}
}
Bind the service to an interface:
$this->app->bind(ServiceInterface::class, Service::class);
Call your service method through container:
call(ServiceInterface::class)->yourMethod(100);
For example in feature tests:
$this->app->bind(ApiGatewayContract::class, InternalApiGateway::class);
bind(ApiGatewayContract::class)->method('performRequest', function ($service, $app, $params) {
// Note: you can access `$params` passed to the method call.
return true;
});
$apiGateway = call(ApiGatewayContract::class);
$request = $apiGateway->performRequest();
$this->assertTrue($request);
Note: if you rely on interfaces, the proxy will automatically resolve bound implementation for you.
If you want to use method binding in your own package, you need to make sure the LecServiceProvider
registered before you use this feature.
$this->app->register(LecServiceProvider::class);
This feature automatically forwards the method if it doesn't exist in your class to the second one defined in the forwarding configuration.
You can define forwarding in your ServiceProvider:
use MichaelRubel\EnhancedContainer\Core\Forwarding;
Forwarding::enable()
->from(Service::class)
->to(Repository::class);
You can as well use chained forwarding:
Forwarding::enable()
->from(Service::class)
->to(Repository::class)
->from(Repository::class)
->to(Model::class);
- Pay attention to which internal instance you're now working on in
CallProxy
when using forwarding. The instance may change without your awareness. If you interact with the same methods/properties on a different instance, theInstanceInteractionException
will be thrown. - If you use
PHPStan/Larastan
you'll need to add the@method
docblock to the service to make it static-analyzable, otherwise it will return an error that the method doesn't exist in the class.
composer test
The MIT License (MIT). Please see License File for more information.